I need to decide if the following method requires synchronization or not in a multi-threaded environment and why?
public class MultiMain
{
public int add(int a,int b)
{
int r=a+b;
return r;
}
}
I am new to multi-threading.I do not feel there is any need for synchronization there is no shared resource here but I am not sure about it.
Thanks in advance.