Give an example program for Getter /read-only methods in JAVA
Answer Posted / hrindows@gmail.com
Read-only:
//A Read-only class in Java
public class Student{
//private data member
private String institute ="MKG";
//getter method for institute
public String getInstitute (){
return institute;
}
}
Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is static constructor, when it will be fired? And what is its use?
Describe the Managed Execution Process?
Explain what is an anonymous method and how is it different from a lambda expression?
Explain what are possible implementations of distributed applications in .net?
Write a program to create a user control with name and surname as data members and login as method and also the code to call it.
Elements of CAS
Why you want to leave your previous company.
Do you know what's the difference between .net and laravel?
Which Namespace is used to to achieve MultiThreading in .NET?
Explain what are the deferred execution and the immediate execution in linq?
What are the important components of .net?
What is the new three features of COM+ services, which are not there in COM (MTS)
What do you mean by Code Access Security in .NET?
What is the purpose of IClonable interface in .NET?
I want to serialize instances of my class. Should I use xmlserializer, soapformatter or binaryformatter?