[Unity Composition]#4. 참조 타입
2022. 2. 2.
참조 타입 using System.Collections; using System.Collections.Generic; using UnityEngine; public class Zoo : MonoBehaviour { // Start is called before the first frame update void Start() { Animal tom = new Animal(); tom.name = "톰"; tom.sound = "냐옹"; tom.Playsound(); } } 위의 코드를 살펴보면, Animal 타입의 변수 tom에 값을 할당할 때에는 new키워드를 사용하여 새로운 Animal 오브젝트를 생성하고 값을 할당하는 것을 볼 수 있다. 이때 Animal 타입은 int, char과 같은 형식의 변수들..