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 |
How do you convert an int to a string in java?
What are library required to connect to excel sheet.
What is unicode used for?
What does compareto () do in java?
Does A Class Inherit The Constructors Of Its Superclass?
What do you mean by static variable?
What is a stringbuilder?
What is the difference between scrollbar and scrollpane?
What’s the difference between the methods sleep() and wait()?
What is the properties class?
what is meant by serialization?
What are design patterns and please explain?