所以,我有以下代码,我知道它在某个地方坏了,我根本无法确定在哪里......
static uint64_t get_disk_total(const char* path)
{
struct statvfs stfs;
if ( statvfs(path, &stfs) == -1 )
{
return 0;
}
uint64_t t = stfs.f_blocks * stfs.f_bsize;
std::cout << "total for [" << path << "] is:" << t
<< " block size (stfs.f_bsize):" << stfs.f_bsize
<< " block count (stfs.f_blocks):" << stfs.f_blocks
<< " mul:" << stfs.f_blocks * stfs.f_bsize
<< " hardcoded: " << (uint64_t)(4096 * 4902319) // line 50
<< std::endl ;
return t;
}
当我编译它时,告诉我:
part_list.cpp: In function ‘uint64_t get_disk_total(const char*)’:
part_list.cpp:50:59: warning: integer overflow in expression [-Woverflow]
好的。当我运行它时,结果是(手动添加换行符):
total for [/] is:2900029440
block size (stfs.f_bsize):4096
block count (stfs.f_blocks):4902319
mul:2900029440
hardcoded: 18446744072314613760
我知道,那个4902319 * 4096 = 20079898624
......谷歌告诉我它是。那么我到底如何得到第一个2900029440
然后18446744072314613760
进行相同的计算呢?有人可以解释一下这里发生了什么吗?这超出了我现在的综合能力,我觉得,这是一个隐藏在某个地方的小问题......4902319 * 4096
不应该是一个如此庞大的数字,让应用程序像这样疯狂......
感谢您的帮助!