gpt4 book ai didi

Java:指定long时L和l(小写L)有区别吗?

转载 作者:太空狗 更新时间:2023-10-29 22:45:14 26 4
gpt4 key购买 nike

当我将一个数字指定为具有常量值 400long 时,使用 400L 之间有什么区别吗400l?

它与包装器类型有什么关系吗? L 是否用于获取原始数据类型 long 的包装器 Longl

最佳答案

没有实际的区别。 Ll 都可以使用,两者都表示一个long 原语。此外,两者都可以是 autoboxed到相应的 Long 包装器类型。

但是,值得注意的是JLS-3.10.1 - Integer Literals说(部分)

An integer literal is of type long if it is suffixed with an ASCII letter L or l (ell); otherwise it is of type int (§4.2.1).

The suffix L is preferred, because the letter l (ell) is often hard to distinguish from the digit 1 (one).

关于Java:指定long时L和l(小写L)有区别吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40953524/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com