`
sasipa90
  • 浏览: 14585 次
  • 性别: Icon_minigender_1
  • 来自: 长沙
最近访客 更多访客>>
社区版块
存档分类
最新评论
文章列表
数组 ==== JAVA中数组可以理解为容器, 使用存储数据。 定义数组有三个方式: 第一种:直接创建一个指定大小的数组 数据类型  [] 数组名  = new 数据类型[数组长度]; 第二种:直接创建一个指定值的数组 数据类型  [] 数组名  = {值1,值2,值3,...}; 第三种:通过new来创建数组,并且指定值。 数据类型  [] 数组名  = new 数据类型[]{值1,值2,值3,...}; 先声明数组名 数据类型 [] 数组名; 数组名 = new 数据类型[数组的长度]; 我们要强调, 数组的长度是固定的。 数组会有多维数组, 这就是数组的数组的数组。 ...
JAVA Keywords ============= Keywords in Java are words  or expressions used to declare an expression, method or return value. About the number of those keywords some say that there are 48, some 50, some others 52. Here we have 51;There are: byte, boolean, break, case, char, continue, float, for, ...
swing组成做编程让我们看, 感觉,可进入,拖放 我们的对象用的比较简单的代码。 swing分为:-容器类:这个类可以调用别的组件 * JFrame * JPanel * JMenuBar    -元素类: 像名字一样说,是最小, 不能调用别的组件 *JLabel *JButton *JComboBox *JTree *JScrollBar *JPane *JTextField *JPasswordField *JPassword,等... import javax.swing.JFrame; import ...
对象是什么?类是什么? 类:世界上 所有是类, 类是类型,个集合包含元素有同样属性比如人类,车类, 电脑类,等等。 JAVA 中, 类是一个集合包含对象 或者对象的对象。类是修饰符,构造函数,普通函数或者方法构成。 ...
Global site tag (gtag.js) - Google Analytics