2023年2月13日

6.变量、常量

摘要: 变量、常量 1、变量作用域 public class Variable{ static int allClicks = 0;//类变量 String str = "hello world";//实例变量 public void method(){ int i = 0;//局部变量 } } 局部变量: 阅读全文
posted @ 2023-02-13 21:42 小黑确实不黑 阅读(12) 评论(0) 推荐(0) 编辑