#7. Reverse Integer Reverse digits of an integer. Example1: x = 123, return 321Example2: x = -123, return -321 题解:暴力做,注意边界: ...
分类:
其他好文 时间:
2016-12-16 07:43:57
阅读次数:
90
其中 array_column(数组,数组中的某个键值) 从多维数组中取出某个键值的一列 返回一个一维数组; array_multisort(数组(一维数组),排序方式(SOTR_ASC,SOTR_DESC),其他数组(可以是二维的)) ...
分类:
编程语言 时间:
2016-12-15 21:04:54
阅读次数:
172
查看索引的方式: 使用SSMS查看索引: 右击一个表,点击设计。 打开设计模式以后,右击一个列点索引。 右边可以看索引,左边是索引的类型。 使用系统储存过程查看索引: 使用视图查看索引: ...
分类:
其他好文 时间:
2016-12-15 20:18:40
阅读次数:
176
String cla="信1305、信1304、信1204、信1103、信1403"; while(cla.contains("、")){ int a=cla.indexOf("、"); System.out.println(cla.substring(0,a)); list.addAll(mgr.... ...
分类:
其他好文 时间:
2016-12-15 14:46:48
阅读次数:
138
//person.constructor Object.constructor Function.constructor 前面三个=>function(){} undefined //person.__proto__ Object.__proto__ Function.__proto__ 前面三个=... ...
分类:
其他好文 时间:
2016-12-15 14:20:01
阅读次数:
160
w,r,wt,rt都是python里面文件操作的模式。 w是写模式,r是读模式。 t是windows平台特有的所谓text mode(文本模式),区别在于会自动识别windows平台的换行符。 类Unix平台的换行符是\n,而windows平台用的是\r\n两个ASCII字符来表示换行,python... ...
分类:
编程语言 时间:
2016-12-15 14:19:04
阅读次数:
181
jQuery选择器总结 转自:http://www.cnblogs.com/onlys 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 3 ...
分类:
Web程序 时间:
2016-12-15 14:15:38
阅读次数:
254
对于初学者而言,编码问题或许还没有没重视起来,但是编码问题是中文开发者必须面对的。今天来看下python开发中如何解决编码问题。注意:本篇讲的是最常见的一种编码问题,其他编码问题,如json函数引起的编码问题,其他函数的编码问题,以后会陆续为大家讲解。 编写程序的过程中会碰到中文字符串,但由于Pyt ...
分类:
编程语言 时间:
2016-12-15 12:00:36
阅读次数:
173
//函数的construct 指向了 function Function(){} undefined //实例化的对象 constructor 指向 函数本身 undefined //每个函数都有prototype属性 undefined //实例化的对象都有__proto__ 属性 undefin... ...
分类:
其他好文 时间:
2016-12-15 12:00:00
阅读次数:
151