Real Time sample code for Encapsulation and Abstraction.
where to use abstract and where to use specifies like
public private.
Answers were Sorted based on User's Feedback
Answer / ravikiran
Encapsulation & Abstraction:
The private variable declaration is abstration,and making
usage of getters and setters is encapsulation
private String name="";
private String school="";
public String getName()
{
return name;
}
public void setName(String name)
{
this.name=name;
}
When We use private when we want to restrict the access
within the class.
When we use public then the variable or method will be
accessible in all the locations
| Is This Answer Correct ? | 18 Yes | 1 No |
Answer / manikandan [ gtec,vellore ]
Encapsulation is used when v need to use a data with the
object access.
Abstraction is used when v need to restrict the end user to
access all process.
| Is This Answer Correct ? | 1 Yes | 10 No |
Why can't you declare a class as protected?
What is %d in printf?
What is exception and error? and what is the difference between them?
How many bits is a float?
Tell me about your ability to work under pressure
What is listnode in java?
What are the types of relation?
What are the OOAD concepts in java explain with examples?
Can an abstract class have a constructor?
What is a stack class in java ?
0 Answers Akamai Technologies,
How can I debug the Java security exceptions and AccessControlExceptions?
What are byte codes?