本帖最后由 庞登升 于 2013-6-27 23:32 编辑
- namespace ReadInt方法
- {
- class Program
- {
- static void Main(string[] args)
- {
- Console.WriteLine("你们班有多少人?");
- int number = ReadInt();
- Console.WriteLine(number);
- Console.ReadKey();
- }
- static int ReadInt()
- {
- string input = Console.ReadLine();
- do //需要一个循环来重复判断是否为数字
- {
- try
- {
- int number=Convert.ToInt32(input);
- return number;
-
- }
- catch (System.Exception ex)
- {
- Console.WriteLine("type in again");
- }
- } while (true);//直接用true循环
- }
- }
- }
复制代码 是不是这样的,比如说在不同的类底下,就必须用 实例化这个类之后,用class.Program调用
而在同一个类里面,就只能用static修饰之后直接调用了??? |