# define WINT_MAX implementation-defined
概要
wint_t
の最大値。
wint_t
が符号付き整数型として定義される場合、このマクロの値は32767以上となる。そうでない場合、このマクロの値は65535以上となる。
例
#include <iostream>
#include <cstdint>
int main()
{
std::wint_t max_value = WINT_MAX;
std::cout << static_cast<long long>(max_value) << std::endl;
}
9
#include <iostream>
#include <cstdint>
int main()
{
std::wint_t max_value = WINT_MAX;
std::cout << static_cast<long long>(max_value) << std::endl;
}
出力例
4294967295
バージョン
言語
- C++11
処理系
- Clang: 3.2 ✅
- GCC: 4.4 ✅
- ICC: ??
- Visual C++: 2010 ✅, 2012 ✅, 2013 ✅, 2015 ✅, 2017 ✅