Develop

[c++] template 사용예

by hooni posted Apr 23, 2003
?

단축키

Prev이전 문서

Next다음 문서

ESC닫기

크게 작게 위로 아래로 댓글로 가기 인쇄
#include <iostream.h>

template <class type>
type max(type x, type y){
        return x>y?x:y;
}

int main(){
        return 0;
}