07 2017 档案
摘要:1 #include 2 #include 3 #include 4 #include 5 #include 6 using namespace std; 7 class Base{ 8 public: 9 int data; 10 Base(int y):data(y){} 11 }; 12 Base *pt(int x){ 13...
阅读全文
摘要:Q: method: Solution “vmmon” is the virtual machine monitor kernel module. You can rebuid it by running: sudo vmware-modconfig --console --install-all
阅读全文
摘要:ubuntu给手机建wifi http://ubuntuhandbook.org/index.php/2014/06/share-internet-with-android-ubuntu-1404/ evil: http://www.cnblogs.com/tiankonguse/p/3780323
阅读全文
摘要:1. 即使libmysqlcppconn.so.7和与之相关存在,也报这个错误。 解决方法:临时添加LD_LIBRARY_PATH, 假使 libmysqlcppconn.so在/usr/local/lib目录下。 $export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/
阅读全文
摘要:1 #include 2 #include 3 #include 4 #include 5 #include 6 using namespace std; 7 class Base{ 8 public: 9 int data; 10 Base(int y):data(y){} 11 }; 12 Base *pt(int x){ 13...
阅读全文
摘要:注意:基本数据类型的位数与系统有关,比如64-bit系统的int型为4B C/C++中以一定区域内的位(bit)为单位来表示的数据成为位域,位域必须指明具体的数目。 位域的作用主要是节省内存资源,使数据结构更紧凑。 1. 一个位域必须存储在同一个字节中,不能跨两个字节,故位域的长度不能大于一个字节的
阅读全文
摘要:线程池包括:n个执行任务的线程,一个任务队列,一个管理线程 1). 预先启动一些线程,线程负责执行任务队列中的任务,当队列空时,线程挂起。 2). 调用的时候,直接往任务队列添加任务,并发信号通知线程队列非空。 3). 管理线程负责监控任务队列和系统中的线程状态,当任务队列为空,线程数目多且很多处于
阅读全文
摘要:Given a digit string, return all possible letter combinations that the number could represent. A mapping of digit to letters (just like on the telepho
阅读全文