C# 索引器问题,已给出例子
鄙人智商低,看不懂书上所引器的用法。索引器set里面的value是指代下面具体例子的什么?usingSystem;namespaceConsoleApplication2...
鄙人智商低,看不懂书上所引器的用法。索引器set里面的value是指代下面具体例子的什么?
using System;
namespace ConsoleApplication2
{
public class Photo//这个类是一个相片类
{
string _title;//相片标题
public Photo(string title) {//初始化相片标题的构造方法
_title = title;
}
public string Title {//属性
get { return _title; }
}
}
public class Album{//相册类
Photo[] photos; //用于存放照片的数组,
public Album(int capacity){//初始化相册大小
photos = new Photo[capacity];
}
/// <summary>
/// 所引器,传递的索引用于对照片数组进行检索
/// </summary>
/// <param name="index"></param>
/// <returns></returns>
public Photo this[int index]{
get//get方法用于根据索引从索引器中获取照片
{
if (index < 0 || index >= photos.Length)//有效的索引
{
Console.WriteLine("索引无效");
return null;
}
else
{
return photos[index];
}
}
set
{
if (index < 0 || index >= photos.Length)//index指代什么?
{
Console.WriteLine("索引无效");
return;//set 无返回 所以 return 就可以了
}
else
{
photos[index] = value;
}
}
}
/// <summary>
/// 只读索引
/// </summary>
/// <param name="title"></param>
/// <returns></returns>
public Photo this[string title]
{
get
{
foreach (Photo p in photos)
{
if (p.Title == title)//判断
return p;
}
Console.WriteLine("没有该照片");
return null;
}
}
}
class Test {
static void Main(string[] arsg) {
Album friends = new Album(3);//创建相册大小为3
//创建3张照片
Photo first = new Photo("逍遥");
Photo second = new Photo("太子");
Photo third = new Photo("姚佳");
friends[0] = first;
friends[1] = second;
friends[2] = third;
//一下为按照索引进行查询
Photo objPhoto = friends[2];
Console.WriteLine(objPhoto.Title);
//按名称进行检查
Photo obj2Photo = friends["太子"];
Console.WriteLine(obj2Photo.Title);
}
}
} 展开
using System;
namespace ConsoleApplication2
{
public class Photo//这个类是一个相片类
{
string _title;//相片标题
public Photo(string title) {//初始化相片标题的构造方法
_title = title;
}
public string Title {//属性
get { return _title; }
}
}
public class Album{//相册类
Photo[] photos; //用于存放照片的数组,
public Album(int capacity){//初始化相册大小
photos = new Photo[capacity];
}
/// <summary>
/// 所引器,传递的索引用于对照片数组进行检索
/// </summary>
/// <param name="index"></param>
/// <returns></returns>
public Photo this[int index]{
get//get方法用于根据索引从索引器中获取照片
{
if (index < 0 || index >= photos.Length)//有效的索引
{
Console.WriteLine("索引无效");
return null;
}
else
{
return photos[index];
}
}
set
{
if (index < 0 || index >= photos.Length)//index指代什么?
{
Console.WriteLine("索引无效");
return;//set 无返回 所以 return 就可以了
}
else
{
photos[index] = value;
}
}
}
/// <summary>
/// 只读索引
/// </summary>
/// <param name="title"></param>
/// <returns></returns>
public Photo this[string title]
{
get
{
foreach (Photo p in photos)
{
if (p.Title == title)//判断
return p;
}
Console.WriteLine("没有该照片");
return null;
}
}
}
class Test {
static void Main(string[] arsg) {
Album friends = new Album(3);//创建相册大小为3
//创建3张照片
Photo first = new Photo("逍遥");
Photo second = new Photo("太子");
Photo third = new Photo("姚佳");
friends[0] = first;
friends[1] = second;
friends[2] = third;
//一下为按照索引进行查询
Photo objPhoto = friends[2];
Console.WriteLine(objPhoto.Title);
//按名称进行检查
Photo obj2Photo = friends["太子"];
Console.WriteLine(obj2Photo.Title);
}
}
} 展开
3个回答
光点科技
2023-08-15 广告
2023-08-15 广告
通常情况下,我们会按照结构模型把系统产生的数据分为三种类型:结构化数据、半结构化数据和非结构化数据。结构化数据,即行数据,是存储在数据库里,可以用二维表结构来逻辑表达实现的数据。最常见的就是数字数据和文本数据,它们可以某种标准格式存在于文件...
点击进入详情页
本回答由光点科技提供
展开全部
1:if (index < 0 || index >= photos.Length)//index指代什么?
public Photo this[int index] 这是一个数值索引器。
set方法 根据index值向photo赋值。
2:简单点,数组懂吧, index 就可以看成是数组下标
public Photo this[int index] 这是一个数值索引器。
set方法 根据index值向photo赋值。
2:简单点,数组懂吧, index 就可以看成是数组下标
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
索引器就是一种特殊的属性(Property)
不知道你属性理解得怎么样
不知道你属性理解得怎么样
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询