天行健,君子以自强不息!
发布时间:2013-06-20 11:12:51
C++ 定义了内容丰富的抽象数据类型标准库,这些标准库类型是语言组成部分中更基本的那些数据类型(如数组和指针)的抽象,其中最重要的标准库类型是 string 和 vector,bitset;string : 支持大小可变的字符串;vector : 支持大小可变的集合,可用于保存一组指定类型的对象; &nbs.........【阅读全文】
发布时间:2013-06-19 11:38:17
2.1. 基本内置类型表 2.1. C++ 算术类型类型_____________含义___________________________最小存储空间____________bool boolean NAchar  .........【阅读全文】
发布时间:2013-06-19 10:17:09
Make sure that you have administrative privileges before doing the following steps.1. 下载并安装(Microsoft Visual C++ 2008 Redistributable Package)链接:http://www.microsoft.com/en-us/download/details.aspx?id=29下载并安装Download and install “Visual C++ 2008 Redistributables”2. 下载并安.........【阅读全文】
发布时间:2013-06-16 21:51:57
Overview of the High Efficiency Video Coding(HEVC) Standard之四I. 变换,缩放,和量化 Transform, Scaling, and QuantizationHEVC uses transform coding of the prediction error residualin a similar manner as in prior standards. The residual block ispartitioned into multiple square TBs, as des.........【阅读全文】
发布时间:2013-06-13 14:07:56
//dll.c#include<stdio.h>void myprint(char *a){ printf(a);}编译生成dll.so动态链接库文件:#gcc -o dll.so -shared dll.c//main.c#include<dlfcn.h>int main(){void *pHandler = dlopen("./dll.so" ,RTLD_NOW);if(!pHandler) { printf("%s\n",dlerror()).........【阅读全文】