码迷,mamicode.com
首页 >  
搜索关键字:something    ( 1401个结果
《淘宝这十年》,recording something
被采访者:章文嵩,花名正明,淘宝网高级研究员、核心系统负责人。子柳:你对刚入行的技术人员有什么建议?正明:找到自己感兴趣的,花时间投进去,通过实践后的知识积累比只看书本有用得多。我看过一本操作系统方面的英文书,其中引用了一段中国人的格言:“I hear and I forget. I see and...
分类:其他好文   时间:2014-05-12 11:31:40    阅读次数:283
python中的静态方法和类方法
静态方法独立于类和类的实例,它是定义在类作用域内的方法。可以由类和实例直接调用。 类方法和静态方法都要使用装饰器来定义,定义的基本格式是: @staticmethod def ():          #do something 类方法定义的基本格式是: @ classmethod def (cls):          #dosomething 类方法与成员方法不同的是,它需...
分类:编程语言   时间:2014-05-11 22:25:53    阅读次数:422
ZOJ 2724 Windows 消息队列 (优先队列)
链接:http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemCode=2724 Message queue is the basic fundamental of windows system. For each process, the system maintains a message queue. If something h...
分类:Windows程序   时间:2014-05-11 20:31:56    阅读次数:796
oracle cursor
Oracle will generate something called cursor after it parse an statement. This thing--cursor will be stored in Library cache, if next time you need to...
分类:数据库   时间:2014-05-10 01:02:22    阅读次数:579
ie8、firfox关于(new Image()).onload的问题
如果要获取一张图片原本的高度和宽度,我们一般这样获取var url = "../images/1.jpg";var img = new Image();img.src = url;img.onload = function(){ //do something.....}当图片从服务器传到本来(也即....
分类:其他好文   时间:2014-05-08 11:23:03    阅读次数:358
make it clear how to use const in C++
1.first of all,take a lookup on the left side of keyword const.If there is something(type or pointer),then apply const featureto it.2.nothing found on...
分类:编程语言   时间:2014-05-06 00:38:25    阅读次数:361
如何在 javascript / js 中 建立一个map
建立map的方式(其实用的是json实现方式) var a = {}; a["key1"] = "value1"; a["key2"] = "value2"; 既然是个map就有检索某个键是否存在的方法,这样写 if ("key1" in a) { // something } else { // something else } 简单的一句话声明map里面的key和valu...
分类:编程语言   时间:2014-05-02 19:21:46    阅读次数:332
【javaScript】早绑定和迟绑定
javaScript会在调用时会设置执行上下文“this”的值。 一些使用错误的例子 我们举一个例子,给一个Menu构造函数,用来接受一个元素来创建一个菜单。 function Menu(elem){ //... } //使用 var elem = document.getElementById('something') // a DOM element var menu =...
分类:编程语言   时间:2014-05-01 17:40:31    阅读次数:312
In-App Purchase----(二) ---- Designing Your App’s Products
Designing Your App’s ProductsAproductis something you want to sell in your app’s store. You create and configure products in iTunes Connect, and your ...
分类:移动开发   时间:2014-05-01 06:25:43    阅读次数:655
The Leak of The Memory in C++ 1.2
This articles will show how to avoid the leak of the memory in c++, I just use this articles to summerise something, and show how awesome my English is. If someone need Chinese version, just told me....
分类:编程语言   时间:2014-04-27 22:22:19    阅读次数:430
1401条   上一页 1 ... 138 139 140 141 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!