下面有一个字符串阵列:
string[] elements = {"adsf","etwert" ,"asdfasd","gs"};
要求是获取元素最长或最短的长度。
你可以在程序中创建一个对象,这个对象有两个属性元素值和元素长度:
source code
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
class class6
{
private string _elementvalue;
public string elementvalue
{
get { return _elementvalue; }
set { _elementvalue = value; }
}
public int elementlength
{
get {
return _elementvalue.length;
}
}
public class6(string v)
{
_elementvalue = v;
}
}
|
接下来,我们可以创建另一个对象:
#1c5d70a93df662bdc820d2c9f3078d2c#
source code
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
class class7
{
private list< class6 > elements = new list< class6 >();
public void add(class6 c6)
{
elements.add(c6);
}
public int maxlenth()
{
int max = int.minvalue;
foreach (class6 c6 in elements)
{
if (c6.elementlength > max)
{
max = c6.elementlength;
}
}
return max;
}
public int minlenth()
{
int min = int.maxvalue;
foreach (class6 c6 in elements)
{
if (c6.elementlength < min)
{
min = c6.elementlength;
}
}
return min;
}
}
|
上面的对象中,它有3个public的方法,add(),maxlength()和minlength()。
现在,我们在控制台应用程序,测试一下我们的上面写的代码:
ok,已经达到我们预期的结果。
但是,根据程序的封装,下面高亮部分的代码,不应该出现在客户端的程序中。怎样处理的,应该封装在class7这个类别中。因此,insus.net想改动它。
经过这样一改,前端代码直接把阵列字符串传入即可:
以上这篇c#实现获取字符串阵列中元素最长或最短的长度就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。
原文链接:http://www.cnblogs.com/insus/p/7985103.html