求教C#中的一个简单问题:“Test.max(int, int)”是“方法”,但此处被当做“类型”来使用

usingSystem;classTest{publicintmax(intx,inty){if(x>y)returnx;elsereturny;}staticpubli... using System;
class Test
{
public int max(int x, int y)
{
if (x > y)
return x;
else
return y;
}
static public void Main()
{
max n = new max();
Console.WriteLine("the max of 6 and 8 is:{0}", n(6,8));
}
}
:“Test.max(int, int)”是“方法”,但此处被当做“类型”来使用

应该怎么改呢?
展开
 我来答
风之小A
2011-07-08 · TA获得超过791个赞
知道小有建树答主
回答量:662
采纳率:100%
帮助的人:535万
展开全部
using System;
class Test
{
public static int max(int x, int y)
{
if (x > y)
return x;
else
return y;
}
static public void Main()
{
Console.WriteLine("the max of 6 and 8 is:{0}", max (6,8));
}
}
存在的问题 1 max是个方法,你这里把它当成了一个类来创建对象,
2 静态方法只能调用静态方法,所以要在max方法前面声明其为静态
追问
豁然开朗,谢啦
wxbqlcz
推荐于2017-11-24 · TA获得超过120个赞
知道小有建树答主
回答量:94
采纳率:0%
帮助的人:61.3万
展开全部
class Test
{
// max 是一个方法,而且要在 static 型的main方法中被调用,因此也要加上 static 关键字
public static int max(int x, int y)
{
if (x > y)
return x;
else
return y;
}
static void Main()
{
Console.WriteLine("the max of 6 and 8 is:{0}", max(6, 8)); //直接调用max方法
}
}
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友60be2dd6c
2011-07-08 · TA获得超过286个赞
知道小有建树答主
回答量:107
采纳率:0%
帮助的人:74.2万
展开全部
天啊,直接改成 int n = max(6,8);
就行了。
或者直接用
Console.WriteLine("the max of 6 and 8 is:{0}", max(6,8));
这一句就够了。
更多追问追答
追问
不行啊,错误	1	“max”方法没有采用“0”个参数的重载	
错误 2 “n”是“变量”,但此处被当做“方法”来使用
追答
public int max(int x, int y) 
改为
static public int max(int x, int y)
,然后main函数改为
static public void Main()
{
Console.WriteLine("the max of 6 and 8 is:{0}",max(6,8));
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式