码迷,mamicode.com
首页 >  
搜索关键字:struct ethhdr    ( 18974个结果
c++类所占的空间
空的类是会占用内存空间的,而且大小是1,原因是C++要求每个实例在内存中都有独一无二的地址。(一)类内部的成员变量:普通的变量:是要占用内存的,但是要注意对齐原则(这点和struct类型很相似)。static修饰的静态变量:不占用内容,原因是编译器将其放在全局变量区。(二)类内部的成员函数:普通函数...
分类:编程语言   时间:2014-05-19 17:23:13    阅读次数:270
找点(NYOJ891)
//#define LOCAL#include#include#include#includeint const MAX_N=101;typedef struct Point{ int x,y; bool operatorVec[i].y) { ...
分类:其他好文   时间:2014-05-19 17:08:45    阅读次数:253
stl sort分析
最近写代码,无意中发现了一个坑,关于自定义比较函数的stl sort函数的坑,于是记录下来。先贴代码: 1 #include 2 #include 3 #include 4 5 struct finder 6 { 7 bool operator()(int first, in...
分类:其他好文   时间:2014-05-19 14:47:48    阅读次数:319
OpenCV 中的三大数据类型:CvMat 类型
前言 本文将介绍 OpenCV 中的矩阵结构 CvMat 并提供一些很实用的技巧。CvMat的类型定义 1 typedef struct CvMat 2 { 3 int type; // 数据类型 4 int step; // 行长度 5 int* refcou...
分类:其他好文   时间:2014-05-18 18:54:07    阅读次数:1771
web socket RFC6455 frame 打包、解包
#ifndef __APP_WEBSOCKET_FRAME_H__ #define __APP_WEBSOCKET_FRAME_H__ #include "memory.hpp" class buffer; struct websocket_frame { websocket_frame(); ~websocket_frame(); static const unsigned int f...
分类:Web程序   时间:2014-05-18 09:37:29    阅读次数:332
class、interface、struct的区别
class、interface、struct的区别...
分类:其他好文   时间:2014-05-18 04:04:55    阅读次数:367
[游戏模版15] Win32 飞机射击
>__ 2 // C 运行时头文件 3 #include 4 #include 5 #include 6 #include 7 #include 8 #include 9 10 11 //定义结构,飞机子弹 12 struct BULLET{ 13 int x...
分类:Windows程序   时间:2014-05-18 01:44:36    阅读次数:679
对?O?p?e?n?C?V?直?方?图?的?数?据?结?构?C?v?H?i?s?t?o?g?r?a?m?的?理?解
前几天被OpenCV的直方图的数据结构CvHistogram弄得很纠结。上网一搜,也没什么相关的资料。现在有点头绪了,就写点东西,让后面的人好走一些吧。先来看看CvHistogram的定义:typedef struct CvHistogram{ int type; CvArr* bins; floa...
分类:其他好文   时间:2014-05-17 22:55:27    阅读次数:644
hdu1166敌兵布阵
1 //Accepted 250MS 2480K 2 #include 3 #include 4 const int MAXN = 50005; 5 struct node 6 { 7 int l,r; 8 int add,sum; 9 }f[3*MAXN];10 int n;...
分类:其他好文   时间:2014-05-17 20:36:37    阅读次数:316
C iOcp
#include //#include #include #define PORT 5150 #define DATA_BUFSIZE 8192 typedef struct { OVERLAPPED Ov...
分类:其他好文   时间:2014-05-17 18:37:33    阅读次数:297
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!