请问64位的长整形(即long long)在WINDOWS下用什么表示??

dingo2000 2003-08-19 11:13:53
请问64位的长整形(即long long)在WINDOWS下用什么表示??
...全文
227 9 打赏 收藏 转发到动态 举报
写回复
用AI写文章
9 条回复
切换为时间正序
请发表友善的回复…
发表回复
dingo2000 2003-08-19
  • 打赏
  • 举报
回复
ths
ZhangYv 2003-08-19
  • 打赏
  • 举报
回复
__int64
http://expert.csdn.net/Expert/topic/2130/2130535.xml?temp=.2522394
一个使用例子
http://expert.csdn.net/Expert/topic/2129/2129127.xml?temp=.5800745
tonybaobao 2003-08-19
  • 打赏
  • 举报
回复
LONGLONG 就是_int64
cdocument 2003-08-19
  • 打赏
  • 举报
回复
C++中有 _int64。
dingo2000 2003-08-19
  • 打赏
  • 举报
回复
C++里有int64和longlong吗??
yndfcd 2003-08-19
  • 打赏
  • 举报
回复
int64或LONGLONG
chengsion 2003-08-19
  • 打赏
  • 举报
回复
#include <iostream>
#include<windows.h>
using namespace std;
int main(){
__int64 a=1;
cout<<a<<endl;
return 0;
}
skywater 2003-08-19
  • 打赏
  • 举报
回复
在VC++里面,__int8是8-bit的integer,__int16是16-bit的integer,__int32是32-bit的integer,__int64是64-bit的integer,
事实上,__int8对应ANSI里的char, __int16对应ANSI里的short,__int32对应ANSI里的int.这些都是为了编写可移植的代码而定义的类型,__int64在ANSI里没有对应的数据类型。
bm1408 2003-08-19
  • 打赏
  • 举报
回复
__int64

69,371

社区成员

发帖
与我相关
我的任务
社区描述
C语言相关问题讨论
社区管理员
  • C语言
  • 花神庙码农
  • 架构师李肯
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧