0
Please which is more preferable..... Different classes for different functions or different methods for different functions
2 Answers
+ 1
There are no function in java. You can only have methods. You should put similar methods in the same class and different methods in different class. Remember you can create a static method that may be usefull in some cases
0
okay thanks