함수 템플릿의 특수화


문제 정보
check포인트 : 1 (부분 점수)
schedule시간 제한 : 10.0s
storage메모리 제한 : 256M
edit_square출제자:
 
답안 제출

다음의 함수 템플릿에 대해 string에 대한 특수화를 수행하라.

#include <iostream>
#include <string>
using namespace std;

template <typename T>
T multiply(T a, int b) {
    return a * b;
}
int main() {
    int a = 3;
    int b = 2;
    string c = "abc";

    cout << multiply(a, b) << endl;
    cout << multiply(c, b) << endl;

    return 0;
}

예제 출력

6
abcabc

댓글

현재 작성된 댓글이 없습니다.