¿¹Á¦

template <class T>  class MyClass {
public:
int fnc(T type);
int fnc(int b);
};

¼Ö·ç¼Ç
·±Å¸ÀÓ ½Ã¿¡ Ãæµ¹ÇÒ ¼ö ÀÖ´Â ÅÛÇø®Æ® ¸Å°³º¯¼ö¸¦ »ç¿ëÇÏ¿© ÇÔ¼ö¸¦ Áߺ¹Á¤ÀÇÇÏÁö ¸¶½Ê½Ã¿À.

template <class T>  class MyClass {
public:
int fncType(T type);
int fncInt(int b);
};