为什么函数在java中被称为方法?

这个问题在这里已经有了答案:

  • 方法和函数之间的区别33答案

  • 它不是Java,它是一个OOP名称。

    在排序中,它定义了对象实例的一部分行为,而不是一般操作。


    每种语言都有自己的语法来区分他人。 至于你的问题

    函数的存在是独立的。

    方法并不像它们在类中创建的那样。


    为什么函数在java中被称为方法?

  • 方法在一个对象上。
  • 函数独立于对象。
  • 对于Java,只有方法。
  • 对于C,只有函数。
  • 对于C ++来说,这取决于你是否在课堂上。

    In languages such as C++, functions are bits of code that will perform a particular action - but are not associated with an object. functions that are to do with an object are called methods. in java all functions are methods as they are all to do with objects.

    链接地址: http://www.djcxy.com/p/17313.html

    上一篇: Why functions are called methods in java?

    下一篇: Are functions only in non