Keeping AdvancedRobot instance in static field
← Thread:Talk:Robocode/Keeping AdvancedRobot instance in static field/reply
I think the risk is that the static robot reference is not guaranteed to be valid after a given round, so if you don’t update the reference things may not work as expected.
You do not have permission to edit this page, for the following reasons:
You can view and copy the source of this page.
Return to Thread:Talk:Robocode/Keeping AdvancedRobot instance in static field/reply (2).
Since you're updating it every round, why do you need it to be static?
because I’m simply making everything under a static variable, just like lazy singleton. The field itself is not static at all, but the field containing the field is static and has to be static. Diamond uses this style as well afak However the problem of static reference should happen to this style as well, since two approaches are fundamentally equivalent