我有很多常量需要在我的一個類中移動,但我不允許使用成員變量。有什麼選擇?成員變量不是一個選項
這裏是我的初步嘗試:
private void MyConstants(out int textSize, out int paddingValue, out int borderType, ...)
{
//Set them here
}
private Method1()
{
int textSize = 0;
int paddingValue = 0;
int borderValue = 0;
....
MyConstants(out textSize, out paddingValue, out borderValue)
}
private Method2()
{
int textSize = 0;
int paddingValue = 0;
int borderValue = 0;
....
MyConstants(out textSize, out paddingValue, out borderValue)
}
//Many more methods...Just seems to repetitive.
創建常量? – siride 2010-11-12 01:13:51
你不允許在任何地方使用成員變量,或者僅僅在這個類中使用成員變量?這個作業也是?爲什麼你不允許使用會員變量? – 2010-11-12 01:16:05
只是在這一類。沒有不做作業。我的手綁在一起。 – Rod 2010-11-12 01:17:49