This question already has an answer here:
What is 1LL or 2LL in C and C++?
(1 个回答)
7年前关闭。
谁能让我知道 1LL 和 -1LL 到底是什么?以下是使用它们的行:
(1 个回答)
7年前关闭。
谁能让我知道 1LL 和 -1LL 到底是什么?以下是使用它们的行:
#define All_In(G) (((G) == 64) ? (W64)(-1LL) : ((1LL << (G))-1LL))
最佳答案
LL 代表 LongLong,意思是至少 64 位
关于c++ - 什么是 C++ 中的 "1LL"和 "-1LL",我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/18499593/
10-09 13:10