本文的实现主要是基于 myclabs/php-enum 扩展包。 今天来分享下如何管理 PHP 的枚举类型。 一种常见的方式是,使用常量来代表枚举类型 const YES = '是'; const NO = '否'; 可以在这个基础上更进一步,将其封装成类,以便于管理 class BoolEnum ...
分类:
Web程序 时间:
2020-05-09 20:49:04
阅读次数:
76
ES6 扩展 【String, RegExp, Array, Number, Function, Object】 对象的扩展 属性的简洁表示法 这糖太甜了, 湖南人表示吃不惯 Object.is() 用来比较两个值是否严格相等,与===行为基本一致 不同之处有两个:+0 != 0 NaN Objec ...
分类:
其他好文 时间:
2020-05-08 16:28:43
阅读次数:
50
Git入门(win10) [Git下载链接] (https://git scm.com/downloads) 一、git的下载和安装 点击进入下载链接可以看到以下画面: 接着按如下的步骤一直Next直到install: 点击install安装成功后,打开cmd输入git,效果如下图则证明安装成功: ...
1. 声明:extern i; 2. 将循环边界用一个变量标志,方便修改,使用const限定符, const int buf_size = 100; 3. const定义的变量默认是局部变量,不能被其他文件访问, 如有需要,extern const int i; 非const 变量默认为extern ...
分类:
编程语言 时间:
2020-05-07 19:22:59
阅读次数:
89
mysql表的查询 前期表准备 create table emp( id int not null unique auto_increment, name varchar(20) not null, sex enum('male','female') not null default 'male', ...
分类:
数据库 时间:
2020-05-06 22:05:58
阅读次数:
86
一、单表查询 前期表准备 create table emp( id int not null unique auto_increment, name varchar(20) not null, sex enum('male','female') not null default 'male', #大 ...
分类:
数据库 时间:
2020-05-06 21:32:40
阅读次数:
72
1 package test_3_1; 2 3 public enum Note { 4 5 MIDDLE_C, C_SHARP, B_FLAT; 6 } 1 package test_3_1; 2 3 interface Instrument { 4 5 // 自动static final 6 i ...
分类:
编程语言 时间:
2020-05-06 19:34:54
阅读次数:
71
IdentityServer document is not write clear on this part. so it really confuse me and put me on several hours to resovle this problem. 1. 我的Identity Se ...
分类:
其他好文 时间:
2020-05-05 17:37:21
阅读次数:
89
1 package test_1_1; 2 3 public class VampireNum { 4 5 public static void main(String[] args) { 6 7 /** 8 * 吸血鬼数字是指位数为偶数的数字,可以由一对数字相乘得到 9 * 这对数字各包含乘积的一 ...
分类:
编程语言 时间:
2020-05-03 18:26:08
阅读次数:
62
枚举(enum):应用于有多个选择情况下的场合,枚举类型为一组符号常数提供了一个类型名称 枚举的声明: 1 enum 枚举名 2 { 3 枚举成员 [=常数表达式] 4 ...... 5 } 使用枚举的优点: 1.使程序的可读性更好 2.容易检查出错误 使用枚举注意事项: 枚举量的运算 每个枚举类型 ...