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.
在 Java 中,我可以编写以下语句:
Integer data = 0x00000000;
但是在 Apex 中,同一行代码给了我以下错误:
错误:编译错误:需要分号,发现'x00000000'
我究竟做错了什么?
Apex Code 似乎不允许使用十六进制整数文字。Integer data = 0;应该完成你正在寻找的东西。
Integer data = 0;