Reputation: 4807
I have one java file with numbers of functions around 30-40 that I use commonly, so I am thinking to make external library of it.
But I want to know what are the advantages of making library except it does not need to import like java file, is there any performance advantage of making library?
Upvotes: 0
Views: 4398
Reputation: 2863
You can make a library if the API is mature enough, and robust enough.
If you always need to edit it, You may just lose you time in maintenance.
One advantage: it forces you to take care of the API.
Upvotes: 0
Reputation: 328556
Libraries and frameworks have these advantages:
Upvotes: 5