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.
void func1 (const int *); void func2 (int const *); void func3 (int * const);
どの 2 つの署名が同等ですか? どれもそうでない場合、微妙な違いを説明していただけますか?
最初の 2 つは同等 (int は const)、3 番目は const のポインター (つまり、パラメーター自体) です。