码迷,mamicode.com
首页 >  
搜索关键字:struct option    ( 27477个结果
学习笔记之gethostbyaddr函数
刚才学了gethostbyname函数,这个gethostbyaddr函数的作用是通过一个IPv4的地址来获取主机信息,并放在hostent结构体中。#include struct hostent * gethostbyaddr(const char * addr, socklen_t len,.....
分类:其他好文   时间:2014-05-28 01:46:42    阅读次数:331
linux tcp server demo
#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
(原创)舌尖上的c++--相逢
引子 前些时候,我在群里出了一道题目:将变参的类型连接在一起作为字符串并返回出来,要求只用函数实现,不能借助于结构体实现。用结构体来实现比较简单:template struct Connect;templatestruct Connect{ static string GetName() ...
分类:编程语言   时间:2014-05-27 16:25:51    阅读次数:492
02重写description方法,跟踪对象的明细信息
类似于java的toString()- (NSString *)description{ // 包含对象类型名称,以及对象的指针地址 return [NSString stringWithFormat:@" {answer: %@, title: %@, icon: %@, option...
分类:其他好文   时间:2014-05-26 19:39:09    阅读次数:301
为什么alertView弹出后button会消失的问题
按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
C++ pair(对组)用法
类模板: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
2014年百度之星程序设计大赛 - 初赛(第二轮)
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的一些使用技巧
iOS开发UI基础—IOS开发中Xcode的一些使用技巧一、快捷键的使用经常用到的快捷键如下:新建shift + cmd + n 新建项目cmd + n 新建文件视图option + cmd + 回车 打开助理编辑器cmd + 回车 显示主窗口cmd + 0 导...
分类:移动开发   时间:2014-05-25 20:10:51    阅读次数:219
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!