C# 语法练习(8): 函数
2009-02-23 08:16:55 来源:WEB开发网无参、无返回值的函数:
using System;
class MyClass
{
static void Show()
{
Console.WriteLine("function");
}
static void Main()
{
Show(); //function
Console.ReadKey();
}
}
参数:
using System;
class MyClass
{
static void Show(string str)
{
Console.WriteLine("is " + str);
}
static void Main()
{
show("function"); //is function
Console.ReadKey();
}
}
返回值:
using System;
class MyClass
{
static string Show(string str)
{
return "is " + str;
}
static void Main()
{
string s = Show("function");
Console.WriteLine(s); //is function
Console.ReadKey();
}
}
函数见 return 就返回:
using System;
class MyClass
{
static int Math(int x, int y)
{
return x + y;
return x * y; /* 执行不了这句 */
}
static void Main()
{
Console.WriteLine(Math(3,4)); //7
Console.ReadKey();
}
}
赞助商链接