class AAA{} static class BBB { public static AAA a { get { return new AAA(); } } }
BBB.a这个属性调用是否是线程安全的?是否可能出现共用同一个AAA实例的情况?
是线程安全的