In reply to ChChee:
This is a poor example; the code is illegal. You are not allowed to do operations on class variables except for comparisons. It should be
if (one_env==null)…. Also,
one_env is typically declared with a
local or
protected property qualifier to prevent other people from accessing directly.