标签: coding-style
我想知道是否最好使用以下结构:
private var x = new MyType(); x = GetResults();
或者
public var x = new MyType(); GetResults();//this accesses the global x and populates it
基本上我应该隐藏我在主线程中填充的内容吗?
答案 0 :(得分:1)
这非常明显:第一个。似乎是如此明显,没有人有球回答?第二种解决方案只是没有显示正在发生的事情。