You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
타입 변환은 값 자체를 다른 타입의 값으로 변환하는 것이고, 타입 캐스팅의 경우 is 나 as 연산자를 통해 타입 정보를 다른 타입으로 캐스팅하는 것을 말합니다.
대표적으로 타입 변환은 Int 를 String 으로 변환하는 것이고, 타입 캐스팅은 Int 타입을 Number 로 캐스팅하는 것입니다.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
타입 변환은 값 자체를 다른 타입의 값으로 변환하는 것이고, 타입 캐스팅의 경우 is 나 as 연산자를 통해 타입 정보를 다른 타입으로 캐스팅하는 것을 말합니다.
대표적으로 타입 변환은
Int
를String
으로 변환하는 것이고, 타입 캐스팅은Int
타입을Number
로 캐스팅하는 것입니다.Beta Was this translation helpful? Give feedback.
All reactions