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


Please Help Members By Posting Answers For Below Questions

What is static constructor, when it will be fired? And what is its use?

709


Describe the Managed Execution Process?

2218


Explain what is an anonymous method and how is it different from a lambda expression?

682


Explain what are possible implementations of distributed applications in .net?

706


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.

663


Elements of CAS

1927


Why you want to leave your previous company.

1778


Do you know what's the difference between .net and laravel?

743


Which Namespace is used to to achieve MultiThreading in .NET?

768


Explain what are the deferred execution and the immediate execution in linq?

748


What are the important components of .net?

739


What is the new three features of COM+ services, which are not there in COM (MTS)

1712


What do you mean by Code Access Security in .NET?

820


What is the purpose of IClonable interface in .NET?

786


I want to serialize instances of my class. Should I use xmlserializer, soapformatter or binaryformatter?

726