码迷,mamicode.com
首页 >  
搜索关键字:literal    ( 346个结果
Javascript —— 理解对象字面量
javascript 手记(摘自Javascript中文网): 在javascript中,可以通过构造函数来创建对象,也可以通过对象字面量来创建对象。 在编程语言中,字面量是一种表示值的记法,例如,"Hello world!" 在许多语言中都表示一个字符串字面量(string literal ).....
分类:编程语言   时间:2014-07-29 11:48:06    阅读次数:225
CTCI 3.3
Imagine a (literal) stack of plates. If the stack gets too high, it might topple. Therefore, in real life, we would likely start a new stack when the ...
分类:其他好文   时间:2014-07-16 23:07:09    阅读次数:196
CTCI 3.3
Imagine a (literal) stack of plates. If the stack gets too high, it might topple. Therefore, in real life, we would likely start a new stack when the ...
分类:其他好文   时间:2014-07-12 08:24:00    阅读次数:258
CTCI 3.3
Imagine a (literal) stack of plates. If the stack gets too high, it might topple. Therefore, in real life, we would likely start a new stack when the ...
分类:其他好文   时间:2014-07-12 08:23:16    阅读次数:231
CTCI 3.3
Imagine a (literal) stack of plates. If the stack gets too high, it might topple. Therefore, in real life, we would likely start a new stack when the ...
分类:其他好文   时间:2014-07-12 08:22:39    阅读次数:181
Mybatis中如何在SQL语句表名中使用参数
insert into prefix_${table_name} (a, b, c) values (#{a}, #{b}, #{c}) ${} 表示直接使用字面量(literal value) #{} 表示这个是个参数 如果 table_name 是 “ABC” 则 ${table_name} 是 ABC #{table_name} 是 “ABC"...
分类:数据库   时间:2014-06-22 00:58:21    阅读次数:240
Tips for C
1. sizeof(literal-string) is number of bytes plus 1 (NULL is included), while strlen(literal-string) is number of bytes.2. Printf and scanf formatBefo...
分类:其他好文   时间:2014-06-18 10:14:22    阅读次数:226
Objective-C literal syntax
1.NSNumberold:NSNumber *oldNumber = [NSNumber numberWithInt:1];new:NSNumber *newNumber = @1;同理:NSNumber *intNumber = @1;NSNumber *floatNumber = @1.0f;...
分类:其他好文   时间:2014-06-13 07:53:21    阅读次数:246
看懂Gradle脚本(1)- Groovy语言的Map语法糖
这一系列文章是写给刚开始使用Gradle,并且对Groovy语法不是特别了解的Java程序员看的。 本篇文章的目标是解释清楚下面这行Gradle脚本: apply plugin: 'java' 行尾的分号是可选的 用过JavaScript语言的人对这个语法糖应该比较熟悉,下面是补上分号后的脚本: apply plugin: 'java'; Map字面量(Literal) Java语言...
分类:其他好文   时间:2014-06-10 06:57:10    阅读次数:336
Format string is not a string literal (potentially insecure)
Warning: Format string is not a string literal (potentially insecure)[objc]view plaincopyNSString*str=nil;str=[NSStringstringWithFormat:@"---%d---",18...
分类:其他好文   时间:2014-06-07 06:52:53    阅读次数:263
346条   上一页 1 ... 32 33 34 35 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!