码迷,mamicode.com
首页 >  
搜索关键字:m. variable shadowin    ( 3896个结果
mysql 配置优化
mysql 优化mysql> SHOW VARIABLES LIKE '%innodb_flush_log_at_trx_commit%';+--------------------------------+-------+| Variable_name | Val...
分类:数据库   时间:2014-06-28 10:40:55    阅读次数:292
MVVM's Nature and Advantage over MVC
In MVC, "C"(controller) musthard referecesa variable's name of UI elements from View. Therefore, changes in View will domino "C" code changes.In MVVM,...
分类:Web程序   时间:2014-06-28 10:06:39    阅读次数:194
Effective C++:条款33:避免遮掩继承而来的名称
(一) 下面这段代码: int x; void someFunc() { double x; //local variable std::cin>>x; //read a new value to local x } 这个指涉的是local变量x,而不是global变量x,因为内存作用域会的名称遮掩外围作用域的名称。当编译器处于someFunc的作用域内并遭遇...
分类:编程语言   时间:2014-06-28 07:58:25    阅读次数:281
Please define the NDK_PROJECT_PATH variable to point to it
Please define the NDK_PROJECT_PATH variable to point to it...
分类:其他好文   时间:2014-06-27 07:56:49    阅读次数:195
Xcode编译异常和警告汇总(持续更新中)
1.Method definition for 'xxx' not foundxxx的方法没有实现出现原因.h声明了xxx方法但是.m没有实现xxx方法解决方法:在类的.m文件实现xxx方法2. Instance variable ‘xxx' accessed in class method在类方法...
分类:其他好文   时间:2014-06-26 20:43:13    阅读次数:212
bash 中的case语法
CASE语法格式备忘 1 case $variable-name in 2 pattern1) 3 command1 4 ... 5 .... 6 commandN 7 ;; 8 pattern2|p...
分类:其他好文   时间:2014-06-26 19:48:13    阅读次数:236
static作用
(1)第一个作用:隐藏。 当我们同时编译多个文件时,所有未加static前缀的全局变量和函数都具有全局可见性。为理解这句话,我举例来说明。我们要同时编译两个源文件,一个是a.c,另一个是main.c。 下面是a.c的内容 #include增加这条语句 char a = ‘A‘; // global variable void msg() { printf("Hello\n"); }...
分类:其他好文   时间:2014-06-26 12:15:11    阅读次数:177
C++11中的mutex, lock,condition variable实现分析
本文分析的是llvm libc++的实现:http://libcxx.llvm.org/ C++11中的各种mutex, lock对象,实际上都是对posix的mutex,condition的封装。不过里面也有很多细节值得学习。 std::mutex 先来看下std::mutex: 包增了一个pthread_mutex_t __m_,很简单,每个函数该干嘛就干嘛。 class mutex...
分类:编程语言   时间:2014-06-25 19:22:54    阅读次数:338
Mysql数据库常用操作
1.备份数据库[root@bj-db-x86v-app01~]#mysqldump-h192.168.0.8-uroot-p‘123456‘user>user.sql2.查看mysql数据库字符集设置mysql>showvariableslike‘character_set_%‘;+--------------------------+----------------------------+|Variable_name|Value|+----------------..
分类:数据库   时间:2014-06-25 10:41:48    阅读次数:451
sas赋值语句,累加语句,keep,drop,rename,retain
赋值语句variable=expression几种赋值的实例:x = x1+x2;x = sum(of x1-x6); 括号中要用ofsum(x,y);如果x或y中有一个为缺失值,sum的结果会将缺失值设为0,而如果用z=x+y;有缺失值的话z的结果会为缺失值ar(1) = br(1); *将数组b...
分类:其他好文   时间:2014-06-25 00:36:53    阅读次数:1693
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!