Explain in detail about encapsulation with an example?
Answers were Sorted based on User's Feedback
Answer / ravikiran(aptech mumbai)
encapsulation is the one which will bind members and methods
into a single entity
| Is This Answer Correct ? | 10 Yes | 2 No |
Answer / sanjay singh chauhan
it is way to combine field and mathod in a single entity
like a capsule ;
class A
{
int i;
void m(int i)
{
//body of this mathod ;
}
}
like this way;
| Is This Answer Correct ? | 7 Yes | 0 No |
Answer / aditya mohata
encapsulation is hiding detalis which u dont wanna show it
publicly or u dont want it to b modified.
| Is This Answer Correct ? | 10 Yes | 5 No |
Answer / sivaprasad addepalli
Encapsulation is a mechanism which binds the attributes or
variables and methods together as a single entity known as
class.
ex:
class sample
{
public:
int a;
public:
void test()
{
}
}
Encapsulation is a concept of datahiding,
| Is This Answer Correct ? | 5 Yes | 0 No |
What is native method in java?
explain System.out.println()
1).Is Object class abstract or not? 2).Is main method(public static void main(String args[])low priority thread or high priority thread?
Why char array is preferred over string for storing password?
can java object be locked down for exclusive use by a given thread? Or what happens when a thread cannot acquire a lock on an object? : Java thread
What are methods in java?
What advantage does an entity bean have over a sessin bean?
How do u provide security in java
What is the difference between @before and @beforeclass annotation?
What is the main purpose of java?
What is method overloading in JAVA? Why is it not present in C ?
0 Answers Akamai Technologies,
Explain the difference between hashmap and hashtable in java?