Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
パラメータの型名またはその情報を(理想的にはまたはconst char*実際に)返すマクロはありますか?cont char *const
const char*
cont char *const
これは実行時ではなくコンパイル時であるため、C++ の typeinfo は機能しません。-fno-rttiとにかく一緒に走ります。
-fno-rtti
ありません。
C++11 には__func__関数定義内に識別子があり、関数名を持つ文字列変数を生成します。ほとんどの C++ コンパイラには、「装飾された」関数名を持つためのバリエーションがあります。
__func__