What is a method ?
Answers were Sorted based on User's Feedback
Answer / keerthi
Methods are the functions which describe the behaviour of an object
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / thennavan.m
Entity /Identifier that has reference that state of behavior.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / praveen
A method is set of properties or behaviour of Datamember
and colletion of operations of perticuler class
methods are two types istance and static
we can call the methods directly with using static keyword
in static methods
we can call the instance methods by using creating of
object of the class
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / j.venkatesan
A function is block of code.
Purpose:
* it is mainly used to reduce the size of the program.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / ravikiran(aptech mumbai)
A method is used to write the functionality with in a class
| Is This Answer Correct ? | 0 Yes | 1 No |
Answer / janet
Methods are functions that operate on instances of classes
in which they are defined.Objects can communicate with each
other using methods and can call methods in other
classes.Method definition has four parts. They are name of
the method,type of object or primitive type the method
returns,a list of parameters and the body of the method. A
method's signature is a combination of the first three
parts mentioned above.
| Is This Answer Correct ? | 1 Yes | 3 No |
What is the difference between yield() and sleep()?
Can a set contain duplicates?
Can a private method of a superclass be declared within a subclass?
How to override equals() and hashCode() method in java?
What is a qms manual?
how many design pattern r there? and wht design pattern u use and why ?
What does sprintf mean?
what is the difference between String and StringBuffer classes?
Is it possible to cast an int value into a byte variable? What would happen if the value of int is larger than byte?
What are the 8 primitive data types in java?
What is keyword auto for?
What is difference between string and stringbuffer?