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.
我只是想知道我在游戏中硬编码了什么?例如,我是否有每个Enemy属性的外部文件等等,或者我是否创建了一个类?
Enemy
那么我应该编码什么信息/东西,我应该有什么作为.file?
干杯!
创建一个属性文件,并在需要该类型的属性时实例化一个 bean。对事物进行硬编码的充分理由并不多。至少,将硬编码的项目变成常量:public static final int XYZZY = 0;
public static final int XYZZY = 0;
话虽如此,我将硬编码以使某些东西工作或进行原型设计。然后我会回过头来概括一下。