Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
To the right of the text box when you're asking a question there's a box, How to Format. Worth a read. – T.J. Crowder Nov 21 '10 at 15:52

3 Answers

No, there is not need to synchronize that method. There is no shared state between threads, so it is thread-safe.

share|improve this answer
1  
thanks for clearing it. – simpleguy Nov 21 '10 at 15:57

No synchronization is needed for that method, because it doesn't have side-effects, i.e. it doesn't touch any class/instance field, and doesn't deal with any object.

share|improve this answer

In this situation no need to go for synchronization. If there is requirement than go for Synchronization

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.