typedef を使ってみる (C++)
C++
Published: 2019-12-07

やったこと

typedef を使ってみます。

確認環境

$ g++ --version
g++ (Homebrew GCC 9.2.0) 9.2.0
Copyright (C) 2019 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

調査

typedef 名は既存の型の別名であり、新しい型の宣言ではありません。

test.cpp

#include <bits/stdc++.h>
using namespace std;

int main() {
    cout << INT_MAX << endl;
    cout << LONG_MAX << endl;

    typedef long long ll;
    ll a = 10000000000;
    cout << a << endl;
}

出力結果

2147483647
9223372036854775807
10000000000

参考