명시적 변환.

class Object
{
public:
	template<class T>
	// explicit를 사용할지 여부를 정할 수 있다. (C++20)
	explicit( std::is_integral_v<T> ) Object( T arg )
	{
	}
}