I have a class as follows
class Myclass{
//no instance variables
static boolean validate(MyObj oj){
//impl
}
}
- Now if 2 thread calls static method
Myclass.validate(param)with different parameters at the same time ,will it work correctly? If yes/no, how? - Is my approach correct? I want to put some validation logic or some custom conversion utility in such static methods.