方法的调用(类方法和成员方法)
摘要:
public class Test1 { public static void main(String[] args) { int show = show();//直接调用 System.out.println("类方法:"+show); int add = Student.add(11, 12); 阅读全文
posted @ 2021-12-25 15:03 HSpringX 阅读(111) 评论(0) 推荐(0) 编辑