<!doctype html><html > <head> <meta charset="utf-8"> <link rel="stylesheet" type="text/css" href="css/bootstrap.css"/> </head> <body> <div class="cont ...
分类:
其他好文 时间:
2016-11-02 23:17:43
阅读次数:
256
<!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title></title> </head> <body> <input type="text"/> <button id="btn">点击发送短信</button> </body></html ...
分类:
其他好文 时间:
2016-11-02 09:58:57
阅读次数:
234
1.下载插件swiper.animate-twice.min.js,加载进页面。 <!DOCTYPE html> <html> <head> ... <link rel="stylesheet" href="path/to/swiper.min.css"> <link rel="stylesheet ...
分类:
其他好文 时间:
2016-11-02 01:43:25
阅读次数:
538
1 #include 2 int main(void) 3 { 4 return 0; 5 } By francis_hao Oct 26,2016 #include int main(void) { return 0; } #include int main(void) { ... ...
分类:
其他好文 时间:
2016-11-02 01:09:04
阅读次数:
209
一、数学函数ABS(x) 返回x的绝对值 BIN(x) 返回x的二进制(OCT返回八进制,HEX返回十六进制)CEILING(x) 返回大于x的最小整数值EXP(x) 返回值e(自然对数的底)的x次方FLOOR(x) 返回小于x的最大整数值GREATEST(x1,x2,...,xn)返回集合中最大的 ...
分类:
数据库 时间:
2016-11-01 19:29:53
阅读次数:
288
一 内置函数 bin()、oct()、hex()的返回值均为字符串,且分别带有0b、0o、0x前缀。 实例 统计二进制数里1的个数 二 format 实例 求两个二进制字符串的和 不能用内置函数 此外format还有很多其他功能,控制精度,对齐等格式化输出。 上面统计1的个数也可以写成 ...
分类:
编程语言 时间:
2016-11-01 13:59:41
阅读次数:
189
今天突发奇想,想玩一下rman这个命令,自己虚拟机好久都没有备份了,所以就来个全备,果不其然给了我一个报错。RMAN>backup
Startingbackupat20-OCT-16
allocatedchannel:ORA_DISK_1
channelORA_DISK_1:SID=134devicetype=DISK
RMAN-06169:couldnotreadfileheaderfordatafi..
分类:
其他好文 时间:
2016-11-01 07:48:51
阅读次数:
247
By francis_hao Oct 31,2016 指针数组和数组指针 指针数组本身是个数组,数组的内容是指针。形如char *pa[]。由于[]优先级高于*,pa先于[]结合表示pa是一个数组,pa[]再与*结合表示pa[]是指针。比如pa[0]放了一个指针。 数组指针本身是个指针,指针指向的是... ...
分类:
编程语言 时间:
2016-11-01 01:01:04
阅读次数:
195