摘要:
内存对齐在我们的程序中,数据结构还有变量等等都需要占有内存,在很多系统中,它都要求内存分配的时候要对齐,这样做的好处就是可以提高访问内存的速度。我们还是先来看一段简单的程序: 程序一1#include2usingnamespacestd;34structX15{6inti;//4个字节7charc1;//1个字节8charc2;//1个字节9};1011structX212{13charc1;//1个字节14inti;//4个字节15charc2;//1个字节16};1718structX319{20charc1;//1个字节21charc2;//1个字节22inti;//4个字节23};24 阅读全文
摘要:
首先看一段代码以及运行结果,我将结合该段代码讲解指针和引用的两点区别://
// main.cpp
// testC++02
//
// Created by fei dou on 12-7-29.
// Copyright (c) 2012年 vrlab. All rights reserved.
// #include #include using namespace std; int main (int argc, const char * argv[])
{ string str1 = "I am a simple string object"; s... 阅读全文