刚才学了gethostbyname函数,这个gethostbyaddr函数的作用是通过一个IPv4的地址来获取主机信息,并放在hostent结构体中。#include
struct hostent * gethostbyaddr(const char * addr, socklen_t len,.....
分类:
其他好文 时间:
2014-05-28 01:46:42
阅读次数:
331
#include #include #include #include #include
#include #define MAXLINE 80 #define SERV_PORT 6970 void do_echo(int sockfd,
struct sockaddr *pcl...
分类:
系统相关 时间:
2014-05-27 18:06:51
阅读次数:
435
引子
前些时候,我在群里出了一道题目:将变参的类型连接在一起作为字符串并返回出来,要求只用函数实现,不能借助于结构体实现。用结构体来实现比较简单:template
struct Connect;templatestruct Connect{ static string GetName() ...
分类:
编程语言 时间:
2014-05-27 16:25:51
阅读次数:
492
类似于java的toString()- (NSString *)description{ //
包含对象类型名称,以及对象的指针地址 return [NSString stringWithFormat:@" {answer: %@, title: %@,
icon: %@, option...
分类:
其他好文 时间:
2014-05-26 19:39:09
阅读次数:
301
按option后会有提示:Do not use the label object to set
the text color or the shadow color. Instead, use the setTitleColor:forState: and
setTitleShadowColor:f...
分类:
其他好文 时间:
2014-05-26 18:47:48
阅读次数:
212
类模板:template struct
pair参数:T1是第一个值的数据类型,T2是第二个值的数据类型。功能:pair将一对值组合成一个值,这一对值可以具有不同的数据类型(T1和T2),两个值可以分别用pair的两个公有函数first和second访问。具体用法:1.定义(构造):1
p...
分类:
编程语言 时间:
2014-05-26 17:54:31
阅读次数:
327
#include #include #include typedef int DataType;//
稀疏矩阵的十字链表存储表示typedef struct LNode{ int i,j; // 该非零元的行和列下标 DataType e; // 非零元素值
struc...
分类:
其他好文 时间:
2014-05-25 23:13:33
阅读次数:
295
1001
暴力
#include
#include
#include
using namespace std;
const int maxn = 100100;
int ll[maxn], rr[maxn];
struct node
{
int x, y, bj;
}e[maxn];
int main()
{
int cas = 1;
int T;
scanf("%d...
分类:
其他好文 时间:
2014-05-25 21:32:50
阅读次数:
268
最近写了一个接受socket数据包,然后再重组上层协议包的东西。每次read到数据就将数据添加到一个链表的尾部,然后检查是否收到了一个完整的包。为了减少内存碎片,把用过的链表节点添加到另外一个链表中,这样下次可以从这个cache链表中重用节点。
在debug的时候我把cache list中的数据打印出来,代码如下:
struct seg_node
{
void* bu...
分类:
其他好文 时间:
2014-05-25 21:31:09
阅读次数:
326
iOS开发UI基础—IOS开发中Xcode的一些使用技巧一、快捷键的使用经常用到的快捷键如下:新建shift
+ cmd + n 新建项目cmd + n 新建文件视图option + cmd + 回车 打开助理编辑器cmd + 回车 显示主窗口cmd + 0 导...
分类:
移动开发 时间:
2014-05-25 20:10:51
阅读次数:
219