今天面试被问到一个类的内存问题,有些记不清楚了.用了 C++这么年,实在是不应该. 于是上网查了一些资料,并做了实验,整理如下: 所用测试环境为64位mac air,编译器为XCode 1.最简单 class Test { public: int a ; }; printf("size=%d\n",sizeof(Test)); 这个相信大家都能猜得到.答案是4.这个不解释. 值得一提的是, Test t; printf("%d,%d",&t,&(t.…
使用ConfigurationManager类 读写配置文件app.config,以下为代码: view plaincopy to clipboard print? using System; using System.Configuration; static class Program { static void Main() { showConfig(); UpdateAppSettings(); showConfig(); Console.ReadKey(true); } private…