一. this什么时候是不能省略的,我们举个例子来说明 class User2{ private int id; public int getId() { return id; } public void setId(int id) { this.id = id;//这里如果写成了id=id,那么根据就近原则,第一个id就是形式参数,第二个id也是形式 //参数,所以这里必须要加上this才行,类似于python中的self } } this用来区分局部变量和实例变量的时候,是不能省略的. 二.…
import java.beans.PropertyDescriptor; import java.lang.reflect.Field; import java.lang.reflect.Method; import java.sql.Timestamp; class Person { private String name; private int age; private Timestamp birth; public Timestamp getBirth() { return birth…
一.封装的步骤 (1)所有属性私有化,使用private关键字进行修饰,private表示私有的,修饰的所有数据只能在本类中进行访问. (2)对外提供简单的操作入口,也就是说以后外部程序要想访问age属性的话,必须通过这些简单的入口才能进行访问. i.对外提供两个公开的方法,分别是set方法和get方法 ii.修改属性的话,就使用set方法:访问属性的话,就使用get方法 二.set方法的命名规范 public void setAge(int a){ age = a; } 三.get的方法的命名…
package com.javaluna.reflect; import java.lang.reflect.Field; import java.lang.reflect.Method; import org.junit.Test; public class ReflectDemo01{ @Test public void test0() throws Exception{ Person person=new Person(); person.setId(1); person.setName(…
1.1  进入grub.cfg配置文件存放目录/boot/grub2/并备份grub.cfg配置文件 [root@linux-node1 ~]# cd /boot/grub2/ [root@linux-node1 grub2]# cp -p grub.cfg grub.cfg.bak [root@linux-node1 grub2]# ls -ld grub.cfg* -rw-r--r--. root root Aug grub.cfg -rw-r--r-- root root Aug grub…
private String orderPrice;//定义类的属性 /* * get set方法 * String.trim() 返回字符串的副本,忽略前导空白和尾部空白. */ public String getOrderPrice() { if("".equals(orderPrice)||orderPrice==null){ return "0";//去除该属性的前后空格并进行非空非null判断 } return orderPrice; } public v…
设置默认值 @Column(name="state",columnDefinition="tinyint default 0") private Integer state=0; columnDefinition在创建表的时候使用 其他时候可以采用直接赋值的方式: private Integer state=0; Timestamp设置 注解@org.hibernate.annotations.Generated来标识一个已生成属性 @Column(name=&qu…
今天,我们开始Java高并发与多线程的第三篇,线程的基本属性和主要方法. [属性] 编号(ID) 类型long 用于标识不同的线程,编号唯一,只存在java虚拟机的一次运行 名称(Name) 类型String 可以不设置,默认值为Thread-线程编号 线程类别(Daemon) 类型boolean 主要用于区分用户线程和守护线程 值为true表示该线程为守护线程,否则为用户线程 默认值与相应线程的父线程该属性值相同,该属性必须在线程启动前设置!否则会报错 用户线程 用户行为运行的线程: 一个Ja…
对于类的成员变量 不管程序有没有显示的初始化,Java  虚拟机都会先自动给它初始化为默认值. 1.整数类型(byte.short.int.long)的基本类型变量的默认值为0. 2.单精度浮点型(float)的基本类型变量的默认值为0.0f. 3.双精度浮点型(double)的基本类型变量的默认值为0.0d. 4.字符型(char)的基本类型变量的默认为 "/u0000". 5.布尔性的基本类型变量的默认值为 false. 6.引用类型的变量是默认值为 null. 7.数组引用类型的…
原文链接: http://simon-c.iteye.com/blog/1016031 引用 For type byte, the default value is zero, that is, the value of (byte)0. For type short, the default value is zero, that is, the value of (short)0. For type int, the default value is zero, that is, 0. Fo…