摘要:
1.GCC工具链 1.GCC默认处理的文件类型 文件类型 扩展名 文件说明 文本文件 *.c C语言源文件 *.C、*.cxx、*.cc C++源文件 *.i 预处理后的C语言源文件 *.ii 预处理后的C++源文件 *.s、*.S 汇编语言 *.h 头文件 二进制文件 .o 目标文件 .so 动态 阅读全文
摘要:
set fileencodings=utf-8,gb2312,gbk,gb18030 set termencoding=utf-8 set encoding=prc 阅读全文
摘要:
su root 时出现错误su Authentication failure 原因是没有给root用户设置密码 sudo passwd root 阅读全文
摘要:
最近想把自己的一个Qt工程同步到github上,但是当自己把代码从仓库中签出来的时候编译的时候总是出现一些很奇葩的错误,一开始以为是源文件编码的问题,改了编码以后问题还是没有解决,我比较了一下两个工程中的文件,真是一比吓一跳啊windows换行是\r\n,十六进制数值是:0D0A。LINUX换行是\... 阅读全文
摘要:
添加头文件#include if(ui->lineEditXStart->text().isEmpty()) //判断lineedit输入内容是否为空 { QMessageBox::information(this,tr("Error"),QStringLiteral("请输入相... 阅读全文
摘要:
void MainWindow::String2Hex(QString str, QByteArray &senddata){ int hexdata,lowhexdata; int hexdatalen = 0; int len = str.length(); sendda... 阅读全文
摘要:
void MainWindow::on_pushButtonSnap_clicked(){ char image_name[13]; sprintf(image_name, "%s%d%s", "C:/image", ++PicNum, ".jpg"); imwrite(image... 阅读全文
摘要:
用记事本打开源代码,然后点另存为,utf-8,编码覆盖QStringLiteral("打开相机") 阅读全文
摘要:
void MainWindow::on_pushButtonShowMarker_clicked(){ QString lat = "104.701681"; QString lon = "31.535617"; //ui->webViewMap->page()->mainFr... 阅读全文
摘要:
///编译时加上-lpthread #include #include #include #include #include #include sem_t sem1,sem2; void fun(void *arg) { printf("fall asleep\n"); sem_wait(&sem1);printf(" 1\n");sem_post(&sem2); sem... 阅读全文