참조 : A COMPARISON OF MICROSOFT'S C# PROGRAMMING LANGUAGE TO SUN MICROSYSTEMS' JAVA PROGRAMMING LANGUAGE

1. We Are All Objects

- java.lang.Object와 비슷한 클래스 System.Object
- 모든 클래스들의 슈퍼 클래스.
- 메소드 이름이 대문자로 시작하는 군.
- object 키워드 == System.Object

2. Keyword Jumble

- 자바에는 없는 키워드가 C#에는 많이 있군.
자바 -> C#
extends, implements -> :
boolean -> bool
final -> sealed
protected -> internal (C#의 protected는 다른 의미인듯..)

3. Of Virtual Machines and Language Runtimes

- 자바 소스 코드 -> 바이트 코드 -> Run in JVM
- C# 소스 코드 -> IL(Intermediated Language) -> Run in CLR(Common Language Runtime)

4. Heap Based Classes and Garbage Collection

- 자바는 new 키워드를 사용해서 모든 객체를 힙 영역에 생성.
- C#도 new 키워드를 사용해서 일부 클레스의 객체를 힙 영역에 생성.
- JVM 처럼 CLR도  Mark and Compact garbage collection algorithm 사용해서 Gabage Collection을 수행한다.
- value 타입은 stack에 생성할 수도 있나보다.

5. Arrays Can Be Jagged

- C나 C++의 다차원 배열에서 배열은 꼭 같은 길이의 배열을 가져야 했다.
- C#과 Java는 배열이 다른 길이의 배열을 가지고 있어도 된다.
int [][]myArray = new int[2][];
myArray[0] = new int[3];
myArray[1] = new int[9];

6. No Global Methods

- C++ 에서는 메소드가 클래스 밖에 있어도 됐나보다.
- C#은 자바처럼 메소드가 클래스의 멤버나 Static Method여야 한다.

7. Interfaces, Yes. Multiple Inheritance, No

- Java처럼 인터페이스는 다중 상속(구현)을 허용.
- Java처럼 상속은 다중 상속을 허용하지 않음.

8. Strings Are Immutable

- C#의 System.String은 Java의 java.lang.String과 비슷. 변하지 않는다.
- C#의 System.Text.StringBuilder는 Java의 java.lang.StringBuffer과 비슷.(동기화 시켜놓은 것도 비슷하려나;; 안했으면 StringBuilder랑 비슷한건데..)
- string 또는 String으로 표기할 수도 있다.

9. Unextendable Classes

- 자바에서 final 키워드를 class 앞에 붙이면 더이상 상속하지 못하는 클래스가 된다.
- C#에서는 sealed 키워드를 class 앞에 붙이면 된다.

10. Throwing and Catching Exceptions

- 자바와 동일하게 예외 클래스들의 최상위에 Exception 클래스를 제공한다.
- 예외를 감싸서 다시 던질 수 있다.

11. Member Initialization at Definition and Static Constructors

- 만약 멤버 변수가 인스턴스 변수이면, 생성자가 호출되기 전에 초기화 한다.
- Static 멤버들은 해당 멤버를 사용하기 전이나, 멤버가 속해있는 클래스의 객체를 만들기 조금 전에 초기화 한다.
- 인스턴스 변수를 생성하거나 Static 메소드를 호출하기 전에 특정 블럭을 실행하도록 하는 것도 가능하다.
- 자바에서는 이런 코드 블럭을 static 초기화 블럭이라고 한다.
- C#에서는 static 생성자라고 한다.(실제 모양도 생성자 모양.)

using System;

class StaticInitTest{

    string instMember = InitInstance();

    string staMember = InitStatic();
   

    StaticInitTest(){
    Console.WriteLine("In instance constructor");
    }

    static StaticInitTest(){
    Console.WriteLine("In static constructor");
    }

    static String InitInstance(){
    Console.WriteLine("Initializing instance variable");
    return "instance";
    }

     static String InitStatic(){
    Console.WriteLine("Initializing static variable");
    return "static";
    }

    static void DoStuff(){
    Console.WriteLine("Invoking static DoStuff() method");
    }

   
    public static void Main(string[] args){

    Console.WriteLine("Beginning main()");

    StaticInitTest.DoStuff();
   
    StaticInitTest sti = new StaticInitTest();

    Console.WriteLine("Completed main()");

    }

}

In static constructor
Beginning main()
Invoking static DoStuff() method
Initializing instance variable
Initializing static variable
In instance constructor
Completed main()

이런 코드가 나온이유.

main() 메소드 실행하기 전에, static 생성자가 호출 된다.

In static constructor

그 다음 static 메소드를 호출할 때는 이미 static 생성자가 호출 됐기 때문에 그냥 메소드 호출.

Invoking static DoStuff() method

생성자가 호출되기 전에 인스턴스 변수들을 초기화 하기 때문에, new StaticInitTest(); 하는 순간 필드들을 초기화 하려고 하겠지.. 그래서..

Initializing instance variable
Initializing static variable

12. Boxing

- .Net은 boxing, unboxing 그냥 된다.
- Java도 5 부터는 된다.
- C#에서도 Collection에는 객체만 들어갈 수 있군.