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.
関数へのポインターが仮想化のために 8 バイトであることはわかっていますが、なぜ関数へのポインターへのポインターが 8 バイトなのですか?
typedef void(*fun())(); sizeof(fun*); // returns 8 byte
8 ビット バイトの 64 ビット システムを使用している場合 (そのように聞こえます)、おそらくすべてのポインターのサイズは 8 バイトになります。仮想化はそれとは何の関係もありません。