Showing posts with label scope. Show all posts
Showing posts with label scope. Show all posts

Saturday, 21 May 2016

scope of public,private,protected in java for class method

public : method which are public there scope is available to child and which ever class wants to use it.
protected : scope visible only in child package
private :  scope visible only in class.