c# 특성(Property)
이 코드는 주로 독자가 속성의 용법을 이해하도록 도와주고, 코드는 속성 값을 추가하고 추가된 속성 값에 따라 선별하는 것을 실현하였다.
using System;
using System.Collections;
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
using System.Text;
namespace
{
//
class People
{
public string Name { get; set; }
public string Address { get; set; }
public People(string name, string address)
{
this.Name = name;
this.Address = address;
}
}
// ( / )
class Peoples : IEnumerable
{
//
private List Lpeoples { get; set; }
private StringBuilder Sbuilder { get; set; }
public Peoples()
{
Lpeoples = new List();
}
//
public void Add(People people)
{
Lpeoples.Add(people);
}
//
public IEnumerator GetEnumerator()
{
foreach (var p in Lpeoples)
{
yield return p;
}
}
public override string ToString()
{
return GetContent(Lpeoples);
}
public string Tostring(string format)
{
return ToString(format, CultureInfo.CreateSpecificCulture("zh-CN"));
}
public string ToString(string format, IFormatProvider formatProvider)
{
IEnumerable ps = Lpeoples;
if (format.ToUpperInvariant() == "B")
{
ps = from p in Lpeoples where p.Address == " " select p;
}
else if (format.ToUpperInvariant() == "S")
{
ps = from p in Lpeoples where p.Address == " " select p;
}
return GetContent(ps);
}
//
private string GetContent(IEnumerable peoples)
{
Sbuilder = new StringBuilder();
foreach (var p in peoples)
{
Sbuilder.AppendLine(string.Format("{0}{1}", p.Name, p.Address));
}
return Sbuilder.ToString();
}
}
public class Start
{
public static void Main()
{
Peoples peoples = new Peoples()
{new People("zhangsan"," "),new People("lisi"," "),new People("wangwu"," "),new People("naliu"," ")};
Console.WriteLine(" :");
Console.WriteLine(peoples.ToString());
Console.WriteLine(" :");
Console.WriteLine(peoples.Tostring("B"));
Console.WriteLine(" :");
Console.WriteLine(peoples.Tostring("S"));
Console.ReadLine();
}
}
}
추가 정보:
IformatProvider 인터페이스의 인용, 이 인터페이스는 포맷 작업에 사용되며, 숫자, 날짜, 시간, 문자열이 일치할 때 CultureInfo의 작업을 수행합니다.CreateSpecificculture("zh-CN")는 결과 출력을 의미합니다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.