Introduction Introduction For this first programming assignment you will write three functions that are meant to interact with dataset that accompanie ...
分类:
其他好文 时间:
2019-02-09 20:53:53
阅读次数:
261
QMessageBox提供两套接口来实现,一种是static functions(静态方法调用),另外一种 the property-base API(基于属性的API) 效果图: ...
分类:
其他好文 时间:
2019-02-09 01:08:10
阅读次数:
164
Proxies allow you to use functions that haven't yet been defined on an object. This means that you can invoke a function then create that function if ...
分类:
编程语言 时间:
2019-02-07 19:07:57
阅读次数:
141
[root@localhost sbin]# ./nginx -V nginx version: nginx/1.11.10 built by gcc 4.8.5 20150623 (Red Hat 4.8.5-28) (GCC) configure arguments: --prefix=/sof ...
分类:
其他好文 时间:
2019-02-03 12:51:21
阅读次数:
178
ORCHARD CMS a free, open source, community-focused Content Management System built on the ASP.NET MVC platform https://herenwei.github.io/orchardchine ...
分类:
其他好文 时间:
2019-02-01 11:15:09
阅读次数:
265
基础命令 压缩: 解压: 添加日志快捷键: 查看进程并结束: 服务器告警: rm回收站 # .bashrc # User specific aliases and functions alias rm='rm -i' alias cp='cp -i' alias mv='mv -i' # Sourc ...
分类:
系统相关 时间:
2019-01-31 22:53:55
阅读次数:
322
开放封闭原则(Open Close Principle,简称OCP)尽量通过扩展软件实体的行为来实现变化,而不是通过修改已有的代码来实现变化 原始定义:Software entities (classes, modules, functions) should be open for extensi ...
分类:
其他好文 时间:
2019-01-31 19:25:28
阅读次数:
156
查看php配置文件位置:/usr/local/php/bin/php-i|grep-i"loadedconfigurationfile"//这个有可能不准,找php.ini最准vim/usr/local/php5/etc/php.ini(需要在源码包文件中拷贝过来)1、date.timezone//用来定义时区2、disable_functions//限制安全函数eval,as
分类:
Web程序 时间:
2019-01-30 07:17:49
阅读次数:
206
stack: 执行 LIFO (Last in First out)操作。底层为 deque 来实现。 Member functions empty: size: top: push: pop: emplace(c++11): swap(c++11): ...
分类:
其他好文 时间:
2019-01-29 18:24:53
阅读次数:
135
http://docs.python.org/3/library/functions.html#abs # 求任意个参数最小值 min() # 求任意个参数最大值 max() # 将整数转换为十六进制 hex() # 类型转换 int() float() bool() str() # 求绝对值 ab ...
分类:
编程语言 时间:
2019-01-28 19:14:02
阅读次数:
160