| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 648 人关注过本帖
标题:[转帖]C#索引属性
只看楼主 加入收藏
live41
Rank: 10Rank: 10Rank: 10
等 级:贵宾
威 望:67
帖 子:12442
专家分:0
注 册:2004-7-22
结帖率:66.67%
收藏
 问题点数:0 回复次数:1 
[转帖]C#索引属性

using System;

public class Document { // Type allowing the document to be viewed like an array of words: public class WordCollection { readonly Document document; // The containing document

internal WordCollection(Document d) { document = d; } // Helper function -- search character array "text", starting at // character "begin", for word number "wordCount." Returns false // if there are less than wordCount words. Sets "start" and // length" to the position and length of the word within text: private bool GetWord(char[] text, int begin, int wordCount, out int start, out int length) { int end = text.Length; int count = 0; int inWord = -1; start = length = 0;

for(int i=begin;i<=end;i++) { bool isLetter = i<end && Char.IsLetterOrDigit(text[i]);

if(inWord>=0) { if(!isLetter) { if(count++ == wordCount) { start = inWord; length = i - inWord; return true; } inWord = -1; } } else { if(isLetter) inWord = i; } } return false; }

// Indexer to get and set words of the containing document: public string this[int index] { get { int start, length; if(GetWord(document.TextArray, 0, index, out start, out length)) return new string(document.TextArray, start, length); else throw new IndexOutOfRangeException(); } set { int start, length; if(GetWord(document.TextArray, 0, index, out start, out length)) { // Replace the word at start/length with the // string "value": if(length == value.Length) { Array.Copy(value.ToCharArray(), 0, document.TextArray, start, length); } else { char[] newText = new char[document.TextArray.Length + value.Length - length]; Array.Copy(document.TextArray, 0, newText, 0, start); Array.Copy(value.ToCharArray(), 0, newText, start, value.Length); Array.Copy(document.TextArray, start + length, newText, start + value.Length, document.TextArray.Length - start - length); document.TextArray = newText; } } else throw new IndexOutOfRangeException(); } }

// Get the count of words in the containing document: public int Count { get { int count = 0, start = 0, length = 0; while (GetWord(document.TextArray, start + length, 0, out start, out length)) ++count; return count; } } }

// Type allowing the document to be viewed like an "array" // of characters: public class CharacterCollection { readonly Document document; // The containing document

internal CharacterCollection(Document d) { document = d; }

// Indexer to get and set characters in the containing document: public char this[int index] { get { return document.TextArray[index]; } set { document.TextArray[index] = value; } }

// Get the count of characters in the containing document: public int Count { get { return document.TextArray.Length; } } }

// Because the types of the fields have indexers, // these fields appear as "indexed properties": public readonly WordCollection Words; public readonly CharacterCollection Characters;

private char[] TextArray; // The text of the document.

public Document(string initialText) { TextArray = initialText.ToCharArray(); Words = new WordCollection(this); Characters = new CharacterCollection(this); }

public string Text { get { return new string(TextArray); } } }

class Test { static void Main() { Document d = new Document("peter piper picked a peck of pickled peppers. How many pickled peppers did peter piper pick?");

// Change word "peter" to "penelope": for(int i= 0;i<d.Words.Count;i++) { if(d.Words[i] == "peter") d.Words[i] = "penelope"; }

// Change character "p" to "P" for(int i=0;i<d.Characters.Count;i++) { if(d.Characters[i] == 'p') d.Characters[i] = 'P'; } Console.WriteLine(d.Text); } }

搜索更多相关主题的帖子: 转帖 索引 属性 
2005-05-15 00:32
yushengou
Rank: 1
等 级:新手上路
帖 子:401
专家分:0
注 册:2005-3-30
收藏
得分:0 
两个字:眼花

我是初学者,希望大家能多多帮助我 /bbs/showimg.asp?BoardID=34&filename=2005-4/200542294030151.gif" border="0" onload="if(this.width>screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" onmouseover="if(this.width>screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.style.cursor='hand'; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" onclick="if(!this.resized) {return true;} else {window.open('http://bbs./bbs/showimg.asp?BoardID=34&filename=2005-4/200542294030151.gif');}" onmousewheel="return imgzoom(this);" alt="" />
2005-05-16 10:15
快速回复:[转帖]C#索引属性
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.527096 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved