Assume that you are on OS X, and you need headfiles for boost. headfiles will place to /usr/local/include/boost/ ...
分类:
其他好文 时间:
2020-01-17 18:54:26
阅读次数:
87
1 1.1 roll out v. 推广,或实行 1.2 pilot v. 试行 n. 飞行员 1.3 bags for life 可重复使用的环保购物袋 2 2.1 How many times a year do the environment groups monitor plastic us ...
分类:
其他好文 时间:
2020-01-16 23:35:15
阅读次数:
112
Do not access Object.prototype method ‘hasOwnProperty’ from target object no-prototype-builtins 2020年01月08日 分类:JavaScript/React/前端设计 评论(0) 阅读(75) 今天在升 ...
分类:
数据库 时间:
2020-01-16 18:50:25
阅读次数:
106
在前面一章我们已经点到过,很多的情况我们都是通过JQuery来对标签进行操作的,在这一章我们就来好好讲一讲这个JQuery。 JQuery初识 先看看JQuery的使用 JQuery的特点: 可以用及其简练的语言来做JS做的事情(write less,do more) JQuery就是一个JS文件, ...
分类:
编程语言 时间:
2020-01-16 14:39:38
阅读次数:
83
1. 概念 Docker:不独占系统,只有一份OS消耗;启动快;更少的授权和管理费用 Compse: 方便管理多容器(多服务)用的 Swarm: docker集群管理 2. 常用命令 创建镜像:docker image build -t dockertest . (do not foget ‘.’) ...
分类:
其他好文 时间:
2020-01-16 14:15:21
阅读次数:
70
客户反馈,11.2.0.4,Linux7 GI集群软件,Oracle软件均已正常安装完毕。 DBCA建库,出现 VIP do not all share the same subnetwork,or the vip subnetwok does not match that of any publi ...
分类:
其他好文 时间:
2020-01-16 01:03:11
阅读次数:
112
1、复合语句 2、条件语句 1. if语句 不加{}也没有错误,但是为了可读性,加上为好。 2. if...else语句 3. if...else if多分支语句 3、switch多分支语句 4、循环语句 1. while循环语句 2. do...while循环语句 3. for循环语句 5、for ...
分类:
其他好文 时间:
2020-01-16 00:46:37
阅读次数:
77
1、逻辑运算符 && || ! 2、关系运算符优先级高于逻辑运算符 3、cctype库中好用的判断 4、 ?:符号用法: 状态1?结果1:结果2 5、switch用法: switch (a): { case a1:do something;break; ... default: do somethi ...
分类:
编程语言 时间:
2020-01-15 22:43:11
阅读次数:
76
/*不停地输入整数并求出它们的平均值*/ #include<stdio.h>int main(void){ int retry,sum=0,count=0; do{ int no; printf("请输入一个整数:"); scanf("%d",&no); sum = sum+no; count = ...
分类:
其他好文 时间:
2020-01-15 14:16:00
阅读次数:
87
一、Oracle 下载 注意Oracle分成两个文件,下载完后,将两个文件解压到同一目录下即可。 路径名称中,最好不要出现中文,也不要出现空格等不规则字符。 官方下地址: http://www.oracle.com/technetwork/database/enterprise-edition/do ...
分类:
数据库 时间:
2020-01-15 13:53:31
阅读次数:
104