由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - 32/64编程怎么做才好呢
相关主题
self defined data type problemhow to initialize this struct.
问个C++问题,高手帮帮忙How to tell gcc stop compiling.
c warningglobal variable usage question in C++
这个结果是啥,为什么呢?为啥有人喜欢把_s结尾的结构typedef成_t结尾的,有讲究么?
C++ Q 99-102 (转载)about typedef
请教一个排序的问题。如何使用这个template?
Xerces-C++ in vs.net questionWhy the number is not exact in C++
c++ typedef 一问sizeof()的问题
相关话题的讨论汇总
话题: int话题: 64话题: 编程话题: typedef话题: 32
进入Programming版参与讨论
1 (共1页)
k****f
发帖数: 3794
1
维护一些老代码
经常有int和void*互转的代码,实在太多,不想改了。
如何强制编译器在64位的时候,自动要求int解释位64位整数?
c*******l
发帖数: 7
2
how about this:
1. replace every "int" to "Int"
2. create a header file: compatibility.hpp
code:
#ifdef _LP64_
typedef long long int Int;
#elif _ILP32_
typedef int Int;
#endif
3. include "compatibility.hpp"
1 (共1页)
进入Programming版参与讨论
相关主题
sizeof()的问题C++ Q 99-102 (转载)
是不是题出错了?请教一个排序的问题。
大家帮忙看看是什么问题Xerces-C++ in vs.net question
intel icc hash_map 求救!c++ typedef 一问
self defined data type problemhow to initialize this struct.
问个C++问题,高手帮帮忙How to tell gcc stop compiling.
c warningglobal variable usage question in C++
这个结果是啥,为什么呢?为啥有人喜欢把_s结尾的结构typedef成_t结尾的,有讲究么?
相关话题的讨论汇总
话题: int话题: 64话题: 编程话题: typedef话题: 32