I have some funtions like:
One that takes input on string and modifies and returns the string
Function that takes a string (holding XML) as input and parses it and returns an object.
For example:
public class MyUtils{
public static modifyString(String str){
return someString;
}
public MyObject parseString(String xml){
//Parse XML
return obj;
}
}
- Can I make such functions static, so that anyone can use those without creating instance of my class?
- What if two threads call the function at same time? Is the code thread-safe? If yes/no, how?
- When should I use a singleton object and when should I use static methods?