Interview Question in Java


 

Interview Question :: What are the access modifiers available in Java

 What are the access modifiers available in Java

by ksk
VoteNowAnswers to "What are the access modifiers available in Java"

 Access modifier specify where a method or attribute can be used. Public is accessible from anywhere. Protected is accessible from the same class and its subclasses. Package/Default are accessible from the same package. Private is only accessible from within the class.

by ksk