摘要:
环境:ubuntu22.04 LTS + mysql5.7(阿里云) 第一步:更新系统 sudo apt update -y sudo apt upgrade -y 第二步:安装php及依赖 sudo apt install -y apache2 php8.1 php8.1-curl php8.1- 阅读全文
摘要:
1. WINDOWS下, 直接使用命令行: wmic cpu get prcessorid 2. Linux环境下 执行命令 cat /proc/cpuinfo 可以看到CPU ID 阅读全文
摘要:
下载路径 http://wiki.eclipse.org/Older_Versions_Of_Eclipse 阅读全文
摘要:
首先在官网找到需要下载的文件,点击下载。 在浏览器或者下载软件中就可以看到这么一个下载地址了,将其复制下来(如下图箭头所指)。 然后将红框内的部分更换为如下内容: vscode.cdn.azure.cn < 就是左边这个 更新后的地址为:http://vscode.cdn.azure.cn/stab 阅读全文
摘要:
动态库打开正常,但是查找函数时失败。 handle = dlopen("/home/zhq/c++/loadmodual/libhello.so",RTLD_NOW|RTLD_LOCAL); if (handle == NULL) { cout<<"load error."<<endl; retur 阅读全文
摘要:
#include <boost/signal.hpp> #include <boost/bind.hpp> #include <iostream> #include <memory> class world : public boost::signals::trackable { public: v 阅读全文
摘要:
#include <iostream> #include "mythread.h"using namespace std; void mythread::run(){ while (i < 100) { unique_lock<mutex> lock(mtx); cout << "i=:" << i 阅读全文
摘要:
linux下boost库的安装及库的介绍 (一)boost"准标准库"安装过程 系统是ubuntu虚拟机,安装的是boost_1_60_0。 (1)首先去下载最新的boost代码包,网址www.boost.org。 (2)进入到自己的目录,解压: bzip2 -d boost_1_60_0.tar. 阅读全文