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 中,这基本上是一个 final 属性,而常量是一个类似 final 的静态属性。