类方法

Posted gengyantao

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了类方法相关的知识,希望对你有一定的参考价值。

import java.util.Scanner;

public class Demo1 {
public static void main(String[] args) {
System.out.println("请输入一个值");
Scanner sc = new Scanner(System.in);  //创建对象
int input = sc.nextInt();
Demo1 demo1 = new Demo1();//创建对象类名称作为开头
demo1.product(input);
int product = demo1.product(input);
System.out.print(product);
sc.close();//关闭输入接口
}
public int product(int n) {//定义方法
int num =1;
for(int i=1;i<=n;i++) {
num *=i;//阶层
}
return num;
}

}




















以上是关于类方法的主要内容,如果未能解决你的问题,请参考以下文章

objc中的类方法和实例方法有什么本质区别和联系

类方法@classmethod

关于类方法的调用

python中类对象实例对象类属性实例属性类方法实例方法静态方法

实例方法与类方法区别

python类:类方法和静态方法