1、 联想某站命令执行 开启Firefox,输入:http://106.37.234.18/a.php Webserver返回如下信息: Notice: Use of undefined constant a - assumed 'a' in C:\xampp\htdocs\a.php on lin ...
分类:
其他好文 时间:
2016-04-20 17:39:55
阅读次数:
1074
/** * 安装APK文件 */ private void installApk() { File apkfile = new File(mSavePath,Constant.appFileName); if (!apkfile.exists()) { return; } // 通过Intent安装 ...
分类:
其他好文 时间:
2016-04-19 13:48:51
阅读次数:
140
The ATM network used in this lesson is designed to show the differences in performance between two types of ATM traffic contracts, CBR (constant bit r ...
分类:
Web程序 时间:
2016-04-18 13:39:23
阅读次数:
265
《数据结构》邓俊辉_笔记1、大O记号(big‐O notation)性质: 常系数可忽略:O(f(n)) = O(c × f(n))
低次项可忽略:O(n^a + n^b) = O(n^a), a > b > 0常数(constant function)
2 = 2010 = 2010*2010 = 20102010 = O(1)
这类算法的效率最高对数 O(logn):lnn | lgn |...
分类:
其他好文 时间:
2016-04-16 19:26:59
阅读次数:
129
转自:https://codesequoia.wordpress.com/2010/04/19/what-are-cbr-vbv-and-cpb/ It’s common mistake to to consider CBR (Constant Bit Rate) as “every frame i ...
分类:
其他好文 时间:
2016-04-16 18:20:22
阅读次数:
233
非公有、非静态字段命名以m开头。 静态域命名以s开头。 公有字段以小写字母开头。 public static final 字段(常量) 全部大写,并用下划线连起来。 1 public class MyClass { 2 3 public static final int SOME_CONSTANT ...
分类:
其他好文 时间:
2016-04-15 13:35:54
阅读次数:
143
一.表的创建: CREATE TABLE [database_name.[schema_name].|schema_name.]table_name (column_name1 data_type --列名 [ DEFAULT constant_expression] --约束类型 [ IDENTI ...
分类:
数据库 时间:
2016-04-15 02:04:23
阅读次数:
248
Imgproc.cvtColor(sshotmat, sshotmatgray, Imgproc.COLOR_BGR2GRAY); 更多参数看 public class Imgproc { private static final int IPL_BORDER_CONSTANT = 0, IPL_B ...
分类:
其他好文 时间:
2016-04-10 19:15:43
阅读次数:
686
Sort a linked list in O(n log n) time using constant space complexity. Example Given 1-3->2->null, sort it to 1->2->3->null. /** * Definition for List ...
分类:
其他好文 时间:
2016-04-06 08:12:15
阅读次数:
114
在使用autolayout来进行约束的时候,可能会想要在中途对一个view改变约束 设置好的约束,在代码执行过程中只能更改constant参数,约束的对象和参照比例是不能更改的 现在我又知道了一个新技能:通过更改约束的优先级来更改约束 当priority为1000时,是无法更改优先级的,所以,在xi ...
分类:
其他好文 时间:
2016-04-05 16:10:33
阅读次数:
117