类变量 实例变量 常量 public class Hello {//类名首字母要大写(Hello) static double salary = 2500;//类变量,,有static(静态)的 //变量由 变量类型 变量名(小写或驼峰原则) = 变量值 组成 //常量由 final 变量类型 变量 ...
分类:
其他好文 时间:
2020-06-21 09:25:11
阅读次数:
65
#前言:基于inotify的三种实时同步方法 inotify 脚本部署 (inotifly脚本无法由systemctl启动,只能手动/脚本启停,pkill sersync2,sersync2 -dro /usr/bin/xxxxx) lsync 软件部署 sersync 软件二进制部署。 #几大实时 ...
分类:
其他好文 时间:
2020-06-20 21:11:12
阅读次数:
98
代码: 结果: PS E:\30.Study\30.自动化测试\99.零基础入门 Python Web 自动化测试\10.seleniumCodePractice> & "C:/Program Files/Python38/python.exe" "e:/30.Study/30.自动化测试/99.零 ...
分类:
编程语言 时间:
2020-06-20 11:09:48
阅读次数:
76
def __setattr__(self, name, value): """ Set the value of setting. Clear all cached values if _wrapped changes (@override_settings does this) or clear ...
分类:
编程语言 时间:
2020-06-20 10:19:43
阅读次数:
112
密码规则:八位以及八位以上, 必须是数字,大小写字母,或者特殊字符四选三。 HTML代码: <div class="form-group"> <label class="col-sm-4 control-label is-required">登录密码:</label> <div class="col ...
分类:
其他好文 时间:
2020-06-19 20:43:49
阅读次数:
89
安装完Mysql之后使用root账户登录出现1698错误 pi@raspberrypi:~ $ mysql -uroot ERROR 1698 (28000): Access denied for user 'root'@'localhost' pi@raspberrypi:~ $ 查看Mysql官 ...
分类:
数据库 时间:
2020-06-19 13:47:45
阅读次数:
68
Description HostAgent fails to establish SSH Connection to RedHat EL7 hostThe error reported when the agent attempts to connect to the host matches th ...
分类:
系统相关 时间:
2020-06-18 19:16:06
阅读次数:
459
The Matplotlib library is designed to work well with many different environments and platforms. As such, the library does not only contain routines fo ...
分类:
其他好文 时间:
2020-06-18 12:42:01
阅读次数:
56
执行命令前确保 app\admin\controllers中没有要创建的controller,在models中确保有这个models文件 php artisan admin:make CeController --model=app\Ce执行时报错Model does not exists !可以将 ...
分类:
其他好文 时间:
2020-06-18 10:34:49
阅读次数:
42
规则: 对文章中连续数字超过3位的进行****显示; 实现效果: 实现方式: computed:{ formatText(){ return val=>{ let str = val let reg = /\d{4,}/g let matchArr = val.match(reg) if(match ...
分类:
其他好文 时间:
2020-06-18 10:34:16
阅读次数:
60