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.
次の表現の違いは何ですか?
(short)(l_angle/l_msb * dividend)
と
short(l_angle/l_msb * divident)
最初のものは短い型への型キャストだと思いますが、2番目の式は何をしますか? それも型キャストである場合、最初とどう違うのですか?
それは同じことです...違いはありません。
(int)X
static_cast<int>(X)
int(X)