answersLogoWhite

0


Best Answer

functions have independent existence means they are defined outside of the class e.g. in c main() is a function while methods do not have independent existence they are always defined inside class e.g. main() in Java is called method.

########

I've been studying OOP lately and had this question myself, so I will share my thoughts;

I was taught that "A Function should do 1(one) thing and do it well."

In specific Regards to PHP;

The difference between a Method and a Function is that a Method is tied to a specific class.

Hope this helps.

--------------------------------------------------------------------------------------------------------

function can return value where as method can't that is the main difference between function and method

---------------------------------------------------------------------------------------------------

Actually you are describing the difference between a function and a procedure. Function returns a value, procedure does not unless you are using c#, then everything is a function.

In c# a function, to paraphrase the first answer, does and thing and does it well. A method contains functions. The most important method is the Main method. All functionality of a program must be referenced in the Main method because when you run a program, it starts at the beginning of the Main method, and stops wehn it hits end of the Main method.

User Avatar

Wiki User

11y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

13y ago

functions and methods refer to the same thing in Java so they do not have any differences. They are bits of code in java which have a name and can take a bunch of parameters and do a certain function. This code can be invoked by using the name. some people use the name functions and some use the name methods but both refer to the same with respect to the java programming language.

This answer is:
User Avatar

User Avatar

Wiki User

15y ago

method= how something is done function= what something does

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the difference between function and method?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the difference between method and function in java?

A function is a piece of code that can be reused by calling its name while a method is a function that is associated with a class. In Java, functions are usually referred to as static methods.


What is the difference between the conventional method of dimensioning and the baseline method of dimensiong?

What is the difference between the conventional method of dimensioning and the baseline method of dimension


Difference between Percentage of Completion method and Completed Contract method?

Difference between Percentage of Completion method and Completed Contract method?


What is the difference between simplex and dual simplex method?

what is difference between regular simplex method and dual simplex method


What are the difference between roster method and rule method?

what is the difference between roster method and rule method


Example of fundamental difference between a polynomial function and an exponential function?

fundamental difference between a polynomial function and an exponential function?


What is the difference between function and method in c language?

In object-oriented languages, a class member function is also known as a method. C does not provide native support for the object-oriented paradigm and therefore does not support methods.


What is the difference between Modified accrual and Full accrual method?

What is the difference between Modified accrual and Full accrual method?"


What is the difference between a wye and a ty?

A wye is a back function of the piping which carries loads of water into your home. It is a great method for smoking da ganj.


What is the difference between the endpoint method and the kinetic reaction method?

The endpoint method is used in titration to find the exact point at which the reaction is complete, often indicated by a color change. The kinetic reaction method involves monitoring the rate of reaction to determine the endpoint based on changes in the reaction rate. Both methods are used to quantify the concentration of a substance in a sample.


What is the difference between scientific method and socratic method?

ice baby


What is the difference between constructor and friend function in c plus plus?

A constructor is a method that fires when the object is instantiated. A friend function is a function that has special access to the object. They are two different types of things, and cannot be further differenced.