摘要:
1 #include 2 #include 3 #include 4 #include 5 #include 6 7 void TestTuple1() 8 { 9 typedef boost::tuple person;10 person p("kevin", "25... 阅读全文
摘要:
1 #include 2 #include 3 #include 4 #include 5 #include 6 7 void TestTuple1() 8 { 9 typedef boost::tuple person;10 person p("kevin", "25... 阅读全文
摘要:
1 #include 2 #include 3 #include 4 #include 5 #include 6 #include 7 #include 8 #include 9 #include 10 #include 11 #include 12 #in... 阅读全文
摘要:
转自:http://www.open-open.com/lib/view/open1328670468108.html内容目录:1、C++各大有名库的介绍——C++标准库2、C++各大有名库的介绍——准标准库Boost3、C++各大有名库的介绍——GUI4、C++各大有名库的介绍——网络通信5、C+... 阅读全文
摘要:
// Sort.cpp : 定义控制台应用程序的入口点。//#include "stdafx.h"#include /************************************************************************//* copyright (c) 2... 阅读全文
摘要:
// CPP_Test@2014.10.22.cpp : 定义控制台应用程序的入口点。//#include "stdafx.h"#include /************************************************************************//* ... 阅读全文
摘要:
公司的电脑上无法运行QtCreator, 又想用Qt,只能搞vs2010+Qt了, 看到运行时要链接一个几M到十几M的QtCore.dll和QtGui.dll,又有一种在用C#写的程序的感觉,很不爽,还是搞个静态库吧, 下面费话不多说,其它详细说明搜其它博客。。。configure -debug-a... 阅读全文
摘要:
文件如下:root@ubuntu:/home/test# ll total 72drwxr-xr-x 3 root root 4096 Sep 2 10:20 ./drwxr-xr-x 4 root root 4096 Sep 2 08:31 ../-rwxr-xr-x 1 root root ... 阅读全文
摘要:
SMB(Server Messages Block,信息服务块)是为了在ubuntu虚拟机与windows之间共享文件。具体配置过程如下:(1)安装SMB应用sudo apt-get install sambasudo apt-get install cifs-utils不知道是不是ubuntu已经... 阅读全文
摘要:
大概试了一下,还是不错的,不过字符编码问题还不太好解决:代码:#include "mainwindow.h"#include "ui_mainwindow.h"#include #include #include #include MainWindow::MainWindow(QWidget *pa... 阅读全文
摘要:
QSettings写ini配置文件(Qt版本5.2):#include "inidemo.h"#include #include IniDemo::IniDemo(QWidget *parent) : QMainWindow(parent){ ui.setupUi(this); Q... 阅读全文
|