码迷,mamicode.com
首页 >  
搜索关键字:reference ao    ( 5685个结果
Effective C++:条款21:必须返回对象时别妄想返回其reference
(一) 一定要避免传递一些references去指向其实并不存在的对象。 看下面这个类: class Rational { public: Rational(int numerator = 0, int denominator = 1); private: int n, d; friend const Rational operator*(const Rat...
分类:编程语言   时间:2014-06-16 19:09:14    阅读次数:269
android利用WebView实现浏览器的封装
android提供了封装浏览器的接口,可以让开发者利用自己的view显示网页内容。今天又实现研究了一下,利用WebView显示浏览器内容,还可以利用 WebViewClient显示自己需要的内容。参考:http://developer.android.com/reference/android/we...
分类:移动开发   时间:2014-06-16 13:13:52    阅读次数:209
mongo修改表名
http://docs.mongodb.org/manual/reference/command/renameCollection/db.source-namespace.renameCollection( "target" )比如把users 替换成 all_usersdb.users.renam...
分类:其他好文   时间:2014-06-14 23:49:28    阅读次数:570
Depth-first Search(DFS)
There are generally two methods to write DFS algorithm, one is using recursion, another one is using stack. (reference from Wiki Pedia)Pseudocode for ...
分类:其他好文   时间:2014-06-13 08:39:34    阅读次数:218
GATK errors 及解决办法 (持续更新)
1,MESSAGE: Input files reads and reference have incompatible contigs: Relative ordering of overlapping contigs differs, which is unsafe.##### ERROR re...
分类:其他好文   时间:2014-06-13 07:46:21    阅读次数:1050
记一个使用Client Object Model上传文件的小例子
1. 新建一个C#的Console project. 2. 给project 添加reference: Microsoft.SharePoint.Client Microsoft.SharePoint.Runtime 3. 修改project的属性: Platform target – x64 Ta...
分类:其他好文   时间:2014-06-12 11:43:29    阅读次数:326
C++学习笔记:List容器
http://www.cplusplus.com/reference/list/list/#include list l:初始化一个0大小的表list l(10):初始化一个10个大小的表empty:是否为空size:大小max_size:可分配的最大值front:第一个元素back:最后一个元素p...
分类:编程语言   时间:2014-06-12 10:42:33    阅读次数:241
Android Bundle类
今天发现自己连Bundle类都没有搞清楚,于是花时间研究了一下。依据google官方的文档(http://developer.android.com/reference/android/os/Bundle.html)Bundle类是一个key-value对,“A mapping from Strin...
分类:移动开发   时间:2014-06-10 00:36:28    阅读次数:247
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!