Notice
Recent Posts
Recent Comments
Link
거의 알고리즘 일기장
ref, out 예제 본문
using System;
using System.Collections;
using System.Collections.Generic;
using System.Collections.Specialized;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Runtime.InteropServices;
using System.Text;
using System.Threading.Tasks;
using System.Runtime.Serialization.Formatters.Binary;
using System.Threading;
using System.Diagnostics.CodeAnalysis;
namespace ConsoleApp1
{
class Program
{
//out도 call by reference다.
//ref와 다른점은 값을 할당만 가능, 무조건 사용해야됨
static void Swap(ref int a, ref int b)
{
int tmp = a;
a = b;
b = tmp;
}
static void Main(string[] args)
{
int a = 1;
int b = 2;
Swap(ref a, ref b);
Console.WriteLine("a = {0}, b = {1}", a, b);
}
}
}
반응형
'c# 문법' 카테고리의 다른 글
클래스의 private의 접근도 편하게 _ get, set (0) | 2020.05.13 |
---|---|
클래스의 상속과 초기화 예제 + virtual까지의 예제 (0) | 2020.05.13 |
문자열 위치찾기 (0) | 2020.05.12 |
박싱과 언박싱 예제 (0) | 2020.05.11 |
class를 이용한 간단 예제 2개 (0) | 2020.05.11 |
Comments