在c#中声明静态类型的成员

更新#2 – 解决了谜团

我已经弄清楚了这个问题 – 这是我在java内部类中使用时对关键字static的误解.我认为静态意味着传统意义上的静态 – 就像c#一样.在Java的情况下,静态内部类具有略微不同的含义.我个人会使用除静态之外的其他关键字来达到相同的效果以消除混淆.

这里有几个很好的链接,解释了静态内部类在java中的含义.

link1
link2

对不起发送每个人的野鹅追逐:)

原帖

在java中我可以编写以下内容:

public class UseStaticMembers {
    private Holder holder;

    holder.txt1 = "text";
    holder.txt2 = "text";

    CallSomeMethod(holder);
}


static class Holder {
    public string txt1;
    public string txt2;
}

但我不能用C#做到这一点.我收到以下错误:“无法在行上声明静态类型’Holder’的变量”:“private Holder holder;”

如何在C#中实现相同的效果(如果可以的话).

更新#1

以下是此模式如何用于优化自定义列表适配器的示例.如您所见,我不能通过静态类名访问静态成员,但需要通过变量引用它.它需要传递给Tag.

public class WeatherAdapter extends ArrayAdapter<Weather>{

Context context; 
int layoutResourceId;    
Weather data[] = null;

public WeatherAdapter(Context context, int layoutResourceId, Weather[] data) {
    super(context, layoutResourceId, data);
    this.layoutResourceId = layoutResourceId;
    this.context = context;
    this.data = data;
}

@Override
public View getView(int position, View convertView, ViewGroup parent) {
    View row = convertView;
    WeatherHolder holder = null;

    if(row == null)
    {
        LayoutInflater inflater = ((Activity)context).getLayoutInflater();
        row = inflater.inflate(layoutResourceId, parent, false);

        holder = new WeatherHolder();
        holder.imgIcon = (ImageView)row.findViewById(R.id.imgIcon);
        holder.txtTitle = (TextView)row.findViewById(R.id.txtTitle);

        row.setTag(holder);
    }
    else
    {
        holder = (WeatherHolder)row.getTag();
    }

    Weather weather = data[position];
    holder.txtTitle.setText(weather.title);
    holder.imgIcon.setImageResource(weather.icon);

    return row;
}

static class WeatherHolder
{
    ImageView imgIcon;
    TextView txtTitle;
}

}

最佳答案 因为您无法在C#中创建静态类型的实例.

您可以直接在c#中访问静态类型的方法和属性.

访问静态类成员

Staticclass.PropetyName;
Staticclass.methodName();

静态类

public static Staticclass
{
  public type PropetyName { get ; set; }

  public type methodName()
  {
    // code 
    return typevariable;
  }
}

因此,不需要创建静态类型的实例,根据C#语言语法,这是非法的.

点赞