| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 591 人关注过本帖
标题:关于调试时语句的问题?
只看楼主 加入收藏
vcsharp
Rank: 1
等 级:新手上路
帖 子:40
专家分:0
注 册:2006-11-13
收藏
 问题点数:0 回复次数:5 
关于调试时语句的问题?

{
public string name;
public int age;
public float weight;
public Student(string a, int b, float c)
{
name = a;
age = b;
weight = c;
}
}

class Test
{
static void Main(string[] args)
{
ArrayList stuarray = new ArrayList();
string tag;
do
{
Console.Write("Enter the name:");
string tmp_name = Console.ReadLine();
Console.Write("Enter the age:");
int tmp_age = int.Parse(Console.ReadLine());
Console.Write("Enter the weight:");
float tmp_weight = float.Parse(Console.ReadLine());
stuarray.Add(new Student(tmp_name, tmp_age, tmp_weight));
Console.WriteLine("Contuine? (y/n)");
tag =Console.WriteLine();

} while (tag == 'y');

int MaxIndex = 0, Maxage = 0;
int i = 0;

for (i = 0; i < stuarray.Count;i++)
{
if ((Student)stuarray[i].age > Maxage)
{
Maxage = (Student)stuarray[i].age;
MaxIndex = i;
}
}
Console.WriteLine("The Name with Maxage is {0}", (Student)stuarray[MaxIndex].name);


}

}


请问一下后面几句有什么错,调试时老出错!说不包括age ,name 的定义!非常感谢!

搜索更多相关主题的帖子: 语句 调试 
2006-11-16 22:47
live41
Rank: 10Rank: 10Rank: 10
等 级:贵宾
威 望:67
帖 子:12442
专家分:0
注 册:2004-7-22
收藏
得分:0 
请问,我这里调式还有N个错误,难道楼主只有那个错误吗?
2006-11-16 23:20
live41
Rank: 10Rank: 10Rank: 10
等 级:贵宾
威 望:67
帖 子:12442
专家分:0
注 册:2004-7-22
收藏
得分:0 

using System;
using System.Collections;

class Student
{
public string name;
public int age;
public float weight;
public Student(string a, int b, float c)
{
name = a;
age = b;
weight = c;
}
}

class Test
{
static void Main(string[] args)
{
ArrayList stuarray = new ArrayList();
string tag;
do
{
Console.Write("Enter the name:");
string tmp_name = Console.ReadLine();

Console.Write("Enter the age:");
int tmp_age = int.Parse(Console.ReadLine());

Console.Write("Enter the weight:");
float tmp_weight = float.Parse(Console.ReadLine());

stuarray.Add(new Student(tmp_name, tmp_age, tmp_weight));

Console.WriteLine("Contuine? (y/n)");
tag = Console.ReadLine();

} while (tag == "y");

int MaxIndex = 0, Maxage = 0;
int i = 0;

Student stu = null;
for (i = 0; i < stuarray.Count;i++)
{
stu = (Student)stuarray[i];
if (stu.age > Maxage)
{
Maxage = stu.age;
MaxIndex = i;
}
}

Console.WriteLine("The Name with Maxage is {0}", stu.name);

}
}

2006-11-16 23:25
YSKING
Rank: 5Rank: 5
来 自:中国绿城
等 级:贵宾
威 望:16
帖 子:1380
专家分:25
注 册:2006-11-11
收藏
得分:0 
把class Test以上的代码定义为一个方法,然后放到class Test这个类里面试试,不过要注意一下静态的问题

仍然自由自我,永远高唱我歌,走遍千里...
2006-11-16 23:27
live41
Rank: 10Rank: 10Rank: 10
等 级:贵宾
威 望:67
帖 子:12442
专家分:0
注 册:2004-7-22
收藏
得分:0 
或者这样

for (i = 0; i < stuarray.Count;i++)
{
if (((Student)stuarray[i]).age > Maxage)
{
Maxage = ((Student)stuarray[i]).age;
MaxIndex = i;
}
}
Console.WriteLine("The Name with Maxage is {0}", ((Student)stuarray[MaxIndex]).name);

2006-11-16 23:27
vcsharp
Rank: 1
等 级:新手上路
帖 子:40
专家分:0
注 册:2006-11-13
收藏
得分:0 
非常感谢楼上的朋友!
2006-11-17 16:22
快速回复:关于调试时语句的问题?
数据加载中...
 
   



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

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