함수 템플릿의 특수화
다음의 함수 템플릿에 대해 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