上一页 1 ··· 7 8 9 10 11 12 下一页
摘要: 1.链接的类型 内部链接:如果一个名称对于它的编译单元来说是局部的,并且在连接时不会与其它编译单元中的同样的名称相冲突,那么这个名称有内部连接。 外部链接:一个名称在连接时可以和其它编译单元共享。 2. 文件中链接的情况: 声明为static类型的具有内部链接 Enumerator 和typedef 阅读全文
posted @ 2011-11-11 11:16 mlj318 阅读(682) 评论(3) 推荐(0) 编辑
摘要: C call C++ This is a function defined in C++,variable defined in a c++ file:1 C call C This is a function defined in C,variable defined in a c file:0 阅读全文
posted @ 2011-11-10 22:10 mlj318 阅读(4821) 评论(0) 推荐(1) 编辑
摘要: Virtual Functions and Inheritance This section presents the C++ code for a typical virtual function invocation scenario. This is then compared to the 阅读全文
posted @ 2011-11-02 18:47 mlj318 阅读(781) 评论(0) 推荐(0) 编辑
摘要: typedef void (* PF)(); 换成 typedef void (* PF)(int,int,...); typedef void (* PF)(,...); typedef void (* PF)(int,int,int*); 都可以 但是换成 typedef void (* PF) 阅读全文
posted @ 2011-11-02 15:17 mlj318 阅读(1741) 评论(0) 推荐(0) 编辑
摘要: /// encoder configuration class class TAppEncCfg { // coding tools (bit-depth) UInt m_uiInputBitDepth; ///< bit-depth of input file UInt m_uiOutputBitDepth; ///< bit-depth of output file UInt m_uiInternalBitDepth; ///< Internal bit-depth (BitDepth+BitIncrement) } bool TVideoIOYuv::read ( TC 阅读全文
posted @ 2011-10-28 12:42 mlj318 阅读(867) 评论(0) 推荐(0) 编辑
摘要: 三、给定图象如下: 应用互相关运算求字符“w”的位置。 %exercise3.m w=imread('target_w.bmp'); f=imread('exercise3.bmp'); [mw,nw]=size(w); [mf,nf]=size(f); m=uint32(mw+mf-1); n=u 阅读全文
posted @ 2011-10-27 16:24 mlj318 阅读(374) 评论(0) 推荐(0) 编辑
摘要: http://wftp3.itu.int/av-arch/jctvc-site/ 下载的word文档的最后面有输出文档名称和序号。 输出文档一般都会有 Reference Software Manual ,Meeting Report ,HM x Encoder Description ,text 阅读全文
posted @ 2011-10-09 17:17 mlj318 阅读(574) 评论(0) 推荐(0) 编辑
摘要: $(IntDir) D:\workspace\HEVC\HM-4.0rc1\build\\vc9\Win32\Debug\TAppEncoder $(OutDir) D:\workspace\HEVC\HM-4.0rc1\build\\..\bin\vc9\Win32\Debug $(OutputP 阅读全文
posted @ 2011-10-09 12:38 mlj318 阅读(10153) 评论(1) 推荐(1) 编辑
摘要: 下面看二维数组: int a[3][4]; 改写下形式,也许,你就懂了 int (a[3])[4]; a[0], a[1], a[2] //他们都是int [4]的类型,都是4个int元素的首地址,你可以画个图 a // 是 int [3] [4]的类型,它是a[0] , a[1], a[2] ,3个元素的首地址,画个图; a + 1 就是&a[1] , a + 2 就是&a[2]; *(a + 1 ) + 2 就是 a[1] + 2, 也就是 &a[1][2], 于是 *( *(a + 1) + 2) 就是a[1][2]; 现在看二维指针和数组指针, int * * 阅读全文
posted @ 2011-09-16 10:37 mlj318 阅读(189) 评论(0) 推荐(0) 编辑
摘要: 过滤规则 ip.src ==192.168.1.107 and ip.dst==192.168.1.110Internet Protocol, Src: 192.168.1.110 (192.168.1.110), Dst: 125.43.12.30 (125.43.12.30) 这一层有一个字段Identification: 0x7f5f (32607) ,身份标识.两端同时使用过滤规则 ip.src ==192.168.1.107 and ip.dst==192.168.1.110 and ((udp.port eq 52843 and udp.port eq 26311)) and ip 阅读全文
posted @ 2011-09-15 16:20 mlj318 阅读(751) 评论(0) 推荐(1) 编辑
上一页 1 ··· 7 8 9 10 11 12 下一页