我应该将某些内容返回到全局变量中,还是应该设置它?干净的代码方式是什么?

时间:2012-11-07 15:08:59

标签: coding-style

我想知道是否最好使用以下结构:

private var x = new MyType();
x = GetResults();

或者

public var x = new MyType();
GetResults();//this accesses the global x and populates it

基本上我应该隐藏我在主线程中填充的内容吗?

1 个答案:

答案 0 :(得分:1)

这非常明显:第一个。似乎是如此明显,没有人有球回答?第二种解决方案只是没有显示正在发生的事情。