What do u mean by method and also contructer in java ?
Answer Posted / prachi
Java methods are similar to functions or procedures in other
programming languages.
Every Java program must have one main() method.
Here is the main() method from a Java program which prints
"Hello World":
public static void main (String[] args) {
// This Java program prints "Hello World!"
System.out.println{"Hello World!");
A constructor creates an Object of the class that it is in
by initializing all the instance variables and creating a
place in memory to hold the Object. It is always used with
the keyword new and then the Class name. For instance, new
String(); constructs a new String object.
COnstructors are basically used to initialize the attributes
of the class.
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What is string pool in java?
How can I become a good programmer?
What is java volatile?
Can we overload final method in java?
Which is fastest collection in java?
What does arrays sort do in java?
Explain the difference between an object-oriented programming language and object-based programming language?
Can a class be private in java?
What is the abstract class?
What are the advantages and disadvantages of object cloning?
What do you understand by private, protected and public?
Is integer passed by reference in java?
What is e in java?
What do you know about java?
Is minecraft java edition free?