C#写整型索引器
我汗。早晨发的那个点错给错分了写完整一写比如一个类里有数据然后通过索引访问int型谢谢。。ONO我的分索引器呢。。publicclassPerson{privatestr...
我汗。早晨发的那个 点错给错分了
写完整一写
比如一个类里有数据 然后通过索引访问 int型 谢谢。。
ONO 我的分
索引器呢。。
public class Person
{
private string _name;//姓名
private int _age;//年龄
public string Name
{
set{_name=value;}
get{return _name;}
}
public int Age
{
set{_age=value;}
get{return _age;}
}
}
比如一楼这个类。我要通过索引器访问应该怎么定义。整型索引器 展开
写完整一写
比如一个类里有数据 然后通过索引访问 int型 谢谢。。
ONO 我的分
索引器呢。。
public class Person
{
private string _name;//姓名
private int _age;//年龄
public string Name
{
set{_name=value;}
get{return _name;}
}
public int Age
{
set{_age=value;}
get{return _age;}
}
}
比如一楼这个类。我要通过索引器访问应该怎么定义。整型索引器 展开
2个回答
展开全部
一楼的乱说,不懂还装。
我来回答。
你那个索引不了,索引器是针对集合的。
如下例子:
public Index
{
private string[] strs = new string[]{"aaa","bbb","ccc"};
//返回strs[index]位置的值
public string this[int index]
{
get
{
return strs[index]
}
}
}
//这是调用
Index i = new Index();
string s = i[1];//bbb
我来回答。
你那个索引不了,索引器是针对集合的。
如下例子:
public Index
{
private string[] strs = new string[]{"aaa","bbb","ccc"};
//返回strs[index]位置的值
public string this[int index]
{
get
{
return strs[index]
}
}
}
//这是调用
Index i = new Index();
string s = i[1];//bbb
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询