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.
とは512Lどういう意味ですか? (または、大文字の L が後に続く任意の数字)
512L
例:
uint sec そして、次の式のコード: sec * 512L
uint sec
sec * 512L
( XV6コードから抜粋 - mkfs.c)
Lロングを表します。
L
これにより、 type のリテラルが作成されますlong。
long
lも機能しますが、 のように見える1ため、避ける必要があります。
l
1