Rectangle::Rectangle(USHORT width, USHORT height)

{

itsWidth = width;

itsHeight = height;

}


-----------------------------------------------------------


Rectangle::Rectangle(int width, int height):

itsWidth(width), itsHeight(height)

{}


이 두가지가 같은 말인가요?? 생성자 선언한 부분인데 :가 무슨역할을 하는지 잘 모르겠습니다 ㅠㅠ