按类别查询搜索结果
关于关键词 的检测结果,共 1327
chinaitboy | 2016-11-29 12:22:28 | 阅读(750) | 评论(0)
沉化成 | 2016-10-24 23:35:53 | 阅读(2550) | 评论(0)
用了好几天的时间编写了一个ftp的客户端,使用socket通讯。服务器端使用的是vsftp,在centos下直接用yum install vsftpd安装即可。在这里我使用的是被动模式。在编写代码时主要犯了错误:1.在使用socket时,对于接受例如read,一定要使用其返回值,其返回值表示真正接收到的数据。而且,接受的长度为缓冲区的长度减一,其目...【阅读全文】
lover_linux | 2016-10-10 15:46:18 | 阅读(1820) | 评论(0)
成员函数的重载、覆盖与隐藏,王章看后收益匪浅。
转载网址是:http://www.cnblogs.com/qlee/archive/2011/07/04/2097055.html【阅读全文】
晓宇IT | 2016-09-08 10:31:15 | 阅读(290) | 评论(0)
典雅的土地雷 | 2016-08-14 23:25:28 | 阅读(1810) | 评论(0)
download.h#ifndef DOWNLOAD_H #define DOWNLOAD_H#include <iostream>#include <string>#include <map>#include <thread>#include <mutex>#include <stdio.h>#include <stdlib.h>...【阅读全文】
敲完代码好吃饭 | 2016-08-14 11:28:38 | 阅读(290) | 评论(0)
ygw982901730 | 2016-07-28 08:45:18 | 阅读(0) | 评论(0)
Bluez作为当前最成熟的开源蓝牙协议栈,在Linux的各大发行版中已经得到了广泛的应用。在桌面环境下,使用Bluez应该已经没有太大的问题,本文的主要目的是介绍在嵌入式平台上,搭建和配置Bluez的各个Profile运行所需做的工作,讨论可能遇到的问题,介绍一些工具的使用和工作原理。因为本人的能力和测试时间有限,可能下文中...【阅读全文】
philarlala | 2016-07-25 19:15:36 | 阅读(3420) | 评论(0)
1.dpdk 网站http://dpdk.org/,下载了dpdk-16.04,内核是3.14.67,glibc是2.12的2.http://dpdk.org/doc/guides/linux_gsg/index.html 有详细的参考文档,有介绍各种详细的限制  内核版本要>2.6.34  glibc >=2.7, lld --version 可以查看  内核config 参数  - UIO ...【阅读全文】
18345093167 | 2016-07-22 22:32:12 | 阅读(1490) | 评论(0)
C++基础(五)虚函数、重载、覆盖、隐藏2014-04-09      0 个评论    来源:C++基础(五)虚函数、重载、覆盖、隐藏  收藏    我要投稿虚函数总是跟多态联系在一起,引入虚函数可以使用基类指针对继...【阅读全文】
binary_swordman | 2016-07-22 10:32:48 | 阅读(640) | 评论(0)
C++基础(五)虚函数、重载、覆盖、隐藏2014-04-09      0 个评论    来源:C++基础(五)虚函数、重载、覆盖、隐藏  收藏    我要投稿虚函数总是跟多态联系在一起,引入虚函数可以使用基类指针对继...【阅读全文】
18345093167 | 2016-07-09 19:18:00 | 阅读(960) | 评论(0)
yang_shine | 2016-06-27 14:59:32 | 阅读(1760) | 评论(0)
SnailT | 2016-06-13 19:21:01 | 阅读(190) | 评论(0)
SnailT | 2016-06-12 11:13:49 | 阅读(260) | 评论(0)
18345093167 | 2016-05-18 19:07:10 | 阅读(2520) | 评论(0)
enenshiwo | 2016-04-25 13:17:32 | 阅读(1370) | 评论(0)
1.以下四种方式时需要旋转templatestruct AVLTreeNode{????AVLTreeNode(const K& key,const V& value)????????:_left(NULL)???????&n...【阅读全文】
soul11201 | 2016-04-12 20:40:12 | 阅读(1970) | 评论(0)
这个问题曾经困扰过我一阵子。请先看一下下面的源代码:class A1{public:        int operator=(int a)        {                return 8;  &nbs【阅读全文】
James_Wang_ | 2016-04-05 11:01:18 | 阅读(170) | 评论(0)
劲火星空 | 2016-03-31 10:14:42 | 阅读(1720) | 评论(0)
多继承中的虚函数重载点击(此处)折叠或打开#include <iostream>#include <string.h>using namespace std;class Person{protected:    char *name;public:...【阅读全文】
劲火星空 | 2016-03-28 21:39:27 | 阅读(1400) | 评论(0)
一、单目运算符重载#include <iostream>using namespace std; class CPoint{private:    int x, y;public:    CPoint(int _x=0, int _y=0):x(_x)...【阅读全文】