(一)
一定要避免传递一些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提供了封装浏览器的接口,可以让开发者利用自己的view显示网页内容。今天又实现研究了一下,利用WebView显示浏览器内容,还可以利用 WebViewClient显示自己需要的内容。参考:http://developer.android.com/reference/android/we...
分类:
移动开发 时间:
2014-06-16 13:13:52
阅读次数:
209
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
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
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
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
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
今天发现自己连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