求教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)”是“方法”,但此处被当做“类型”来使用
应该怎么改呢? 展开
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)”是“方法”,但此处被当做“类型”来使用
应该怎么改呢? 展开
3个回答
展开全部
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方法前面声明其为静态
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方法前面声明其为静态
追问
豁然开朗,谢啦
展开全部
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方法
}
}
{
// 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方法
}
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
天啊,直接改成 int n = max(6,8);
就行了。
或者直接用
Console.WriteLine("the max of 6 and 8 is:{0}", 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));
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询