java30】的更多相关文章

1.类的组合关系 当一个类中的字段是一个类时,就称类依赖于字段这个类,也称这两个类为组合关系 2.快捷键:ctrl+shift+c,多行的// ctrl+shift+/,多行的/-----/ 3.类的加载:随着对象的创建而使用 3.static{ }静态代码块会随着对象的创建而使用,而且在编译时会首先调用public所在类 中的静态代码块 4.继承弊端:可以被子类随意改动调用,暴露细节 final关键字:保证数据的安全性 可以修饰字段,方法,类 使用final之后 字段:不可以被修改 方法:不可…
_ *{ margin: 0; padding: 0; } .on2{ margin: 10px 0; cursor: pointer; user-select: none; color: white; box-shadow: 1px 1px 6px 1px; text-shadow: rgb(34, 34, 34) 2px 2px 3px; text-indent: 2rem; background-color: deeppink; font: bold 24px/50px "" ;…
枚举 为什么需要枚举 在Java开发过程中,有时需要定义一系列有限的数据,如:月份.星期等.<br> java1.5之前,主要通过定义一系列静态常量完成. class Genders{ public static final String MALE = "男"; public static final String FEMALE = "女"; } String gender = Genders.MALE; 问题:给变量赋值时不能限制值的范围,如下面代码可…
with aa as ( select 'sad10' as data from dual union all select 'datf20' as data from dual union all select 'java30' as data from dual ) select regexp_replace(data,'[0-9]','') as english, regexp_replace(data,'[^0-9]','') as num from aa     ENGLISH    …