卸载或安装程序出现:The feature you are trying to use is on a network resource ...这种情况可能是因为原先已经安装过这个软件,所以要先卸载掉;(卸载的时候可能也出现这种情况)提示框如下:解决方法:在弹出的对话框中找到,点击下面的Browse...
分类:
Web程序 时间:
2015-08-30 11:19:48
阅读次数:
651
在MongoDB中,一个数据库可能会包含多个集合,就像MySql中一个数据库可能包含多个表;一个集合中可能又会包含多个文档,就像MySql中一个表中包含多条数据。基本操作命令:
showdbs查看所有数据库列表
use<dbname>连接指定的数据库
db查看当前使用的数据库
>usetestdb#..
分类:
数据库 时间:
2015-08-30 08:48:57
阅读次数:
182
7.4 Write methods to implement the multiply, subtract, and divide operations for integers. Use only the add operator.这道题让我们实现乘法加法和除法,而且规定了只能使用加法。那么我们先...
分类:
其他好文 时间:
2015-08-30 06:32:21
阅读次数:
142
/usr/local/mongodb/bin/mongo#启动mongodb
MongoDB shell version: 2.2.6
connecting to: test
show dbs;#查看数据库
imooc 0.203125GB
local (empty)
use imooc_2#当没有imooc_2数据库时这个命令相当于创建了此数据库
switc...
分类:
数据库 时间:
2015-08-29 23:26:05
阅读次数:
473
Item 18: Make interfaces easy to use correctly and hard to use incorrectly.
“让接口容易被正确使用,不易被误用”,这也是面向对象设计中的重要概念,好的接口在工程实践中尤其重要。 在使用优秀的第三方组件时,常常能够切身感受到好的接口原来可以这么方便,甚至不需记住它的名字和参数就能正确地调用。 反观自己写的API,常...
分类:
编程语言 时间:
2015-08-29 14:08:50
阅读次数:
245
class uncopyable{protected: uncopyable(){}; //允许derived 对象构造和析构 ~uncopyable(){};private: uncopyable(const uncopyalbe&...
分类:
其他好文 时间:
2015-08-29 12:21:33
阅读次数:
177
https://www.udemy.com/python-programming-for-real-life-networking-use/https://pynet.twb-tech.com/blog/python/books-beginners.htmlPython Book Recommend...
分类:
编程语言 时间:
2015-08-29 12:20:20
阅读次数:
211
这几天在做微信登录,总是遇到这个问题,详细如下:ld: library not found for -lWeChatSDKclang: error: linker command failed with exit code 1 (use -v to see invocation)如图所示:每次把引入...
分类:
其他好文 时间:
2015-08-29 11:08:20
阅读次数:
224
Descriptionn points are given on the Cartesian plane. Now you have to use some rectangles whose sides are parallel to the axes to cover them. Every po...
分类:
其他好文 时间:
2015-08-29 06:15:00
阅读次数:
122
use TestDBGOSELECT indexname = a.name , tablename = c. name , indexcolumns = d .name , a .indidFROM sysindexes a JOIN sysindexkeys b ON a .id = b ....
分类:
数据库 时间:
2015-08-28 23:05:29
阅读次数:
194