这次的helloworld 加个字符串
int main(int argc, const char * argv[]) {
char hello_str[] = "helloWorld!";
return 0;
}
同样的使用MachOView透视一下
这个时候多了一个Section和与其对应的Section Header对应的就是数据段,准确的说是常量区,现在整个执行文件加载之后就是这个样子
- 不可访问区
- 代码区
- 常量区
这次的helloworld 加个字符串
int main(int argc, const char * argv[]) {
char hello_str[] = "helloWorld!";
return 0;
}
同样的使用MachOView透视一下
这个时候多了一个Section和与其对应的Section Header对应的就是数据段,准确的说是常量区,现在整个执行文件加载之后就是这个样子