C++클래스 템 플 릿,함수 템 플 릿 전 특 화,편 특 화 사용
4559 단어 C++클래스 템 플 릿함수 템 플 릿 전 특 화편 특 화
#pragma once
#include <iostream>
#include <map>
template <typename T, typename U>
class TC
{
public:
TC()
{
std::cout << " " << std::endl;
}
void funtest()
{
std::cout << " " << std::endl;
}
};
template<>
class TC<int, int>
{
public:
TC()
{
std::cout << " " << std::endl;
}
void funtest()
{
std::cout << " " << std::endl;
}
};
template<>
void TC<double, double>::funtest()
{
std::cout << " " << std::endl;
}
main.cpp
#include <iostream>
#include "template.h"
using namespace std;
int main()
{
TC<char, int> tchar;
tchar.funtest();
TC<int, int> tint;
tint.funtest();
TC<double, double> tdouble;
tdouble.funtest();
}
출력:일반화 버 전 구조 함수
일반화 버 전 구성원 함수
전 특 화 버 전 구조 함수
전 특 화 버 전 멤버 함수
일반화 버 전 구조 함수
전 특 화 버 전 함수
2.템 플 릿 이 특 화 되 었 습 니 다.
1.템 플 릿 매개 변수 수량:
template.h
#pragma once
#include <iostream>
#include <map>
template <typename T, typename U, typename W>
class TC2
{
public:
void funtest()
{
std::cout << " " << std::endl;
}
};
template <typename U>
class TC2<int, U, double>
{
public:
void funtest()
{
std::cout << " " << std::endl;
}
};
main.cpp
#include <iostream>
#include "template.h"
using namespace std;
int main()
{
TC2<double, double, double> tdouble2;
tdouble2.funtest();
TC2<int, double, double> tint2;
tint2.funtest()
}
출력:일반화 버 전 구성원 함수
편 특 화 버 전 멤버 함수
2.템 플 릿 매개 변수 범위:
template.h
#pragma once
#include <iostream>
#include <map>
template <typename T>
class TC3
{
public:
void funtest()
{
std::cout << " " << std::endl;
}
};
template <typename T>
class TC3<const T>
{
public:
void funtest()
{
std::cout << "const T " << std::endl;
}
};
template <typename T>
class TC3<T&>
{
public:
void funtest()
{
std::cout << "T& " << std::endl;
}
};
template <typename T>
class TC3<T *>
{
public:
void funtest()
{
std::cout << "T * " << std::endl;
}
};
main.cpp
#include <iostream>
#include "template.h"
using namespace std;
int main()
{
TC3<int> tint3;
tint3.funtest();
TC3<int &> tint3_ref;
tint3_ref.funtest();
TC3<int *> tint3_point;
tint3_point.funtest();
TC3<const int> tint3_const;
tint3_const.funtest();
}
출력:일반화 버 전 구성원 함수
T&편 특 화 버 전 멤버 함수
T*편 특 화 버 전 멤버 함수
const T 편 특 화 버 전 멤버 함수
3.함수 템 플 릿 전 특 화(편 특 화 할 수 없 음)
template.h
#pragma once
#include <iostream>
#include <map>
template <typename T, typename U>
void tfunc(T& a, U& b)
{
std::cout << "tfunc " << std::endl;
}
template <>
void tfunc(int& a, int& b)
{
std::cout << "tfunc " << std::endl;
}
main.cpp
#include <iostream>
#include "template.h"
using namespace std;
int main()
{
int a1 = 1;
double b1 = 3.2;
tfunc(a1, b1);
tfunc(a1, a1);
}
출력:tfunc 일반화 버 전 함수
tfunc 전체 특 화 버 전 함수
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Visual Studio에서 파일 폴더 구분 (포함 경로 설정)Visual Studio에서 c, cpp, h, hpp 파일을 폴더로 나누고 싶었습니까? 어쩌면 대부분의 사람들이 있다고 생각합니다. 처음에 파일이 만들어지는 장소는 프로젝트 파일 등과 같은 장소에 있기 때문에 파일...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.