JUST DO IT ~

我只想当个程序员

引用参数

 

using System;
class Test
{
    
static void Swap(ref int x, ref int y) {
        
int temp = x;
        x 
= y;
        y 
= temp;
    }


        
static void Swap( int x,  int y) {
        
int temp = x;
        x 
= y;
        y 
= temp;
    }



    
static void Main() {
        
int i = 1, j = 2;
        Swap(
ref i, ref j);
               
int a = 3 , b = 99  ;
           Swap ( a, b ) ;

        Console.WriteLine(
"{0} {1}", i, j);            // Outputs "2 1"
               Console.WriteLine("{0} {1}", a , b );            // Outputs "2 1"

    }

}

posted on 2008-02-07 16:55 小高 阅读(201) 评论(0)  编辑  收藏 所属分类: DotNet

导航

<2008年2月>
272829303112
3456789
10111213141516
17181920212223
2425262728291
2345678

统计

常用链接

留言簿(3)

随笔分类(352)

收藏夹(19)

关注的blog

手册

搜索

积分与排名

最新评论

阅读排行榜

评论排行榜