AFAIK ที่เปลี่ยนแปลงใน C ++ 0x
ฉันเดาว่ามันเป็นเพียงการกำกับดูแล (โดยพิจารณาว่าคุณสามารถรับเอฟเฟกต์ความเชี่ยวชาญเฉพาะบางส่วนพร้อมกับโค้ด verbose เพิ่มเติมได้โดยการวางฟังก์ชันเป็นstatic
สมาชิกของคลาส)
คุณอาจค้นหา DR ที่เกี่ยวข้อง (รายงานข้อบกพร่อง) หากมี
แก้ไข : ตรวจสอบสิ่งนี้ฉันพบว่าคนอื่น ๆ ก็เชื่อเช่นนั้นเช่นกัน แต่ไม่มีใครสามารถค้นหาการสนับสนุนดังกล่าวในร่างมาตรฐานได้ กระทู้นี้จึงดูเหมือนว่าจะแสดงให้เห็นว่าเชี่ยวชาญบางส่วนของแม่แบบฟังก์ชั่นไม่ได้รับการสนับสนุนใน C
แก้ไข 2 : เป็นเพียงตัวอย่างของสิ่งที่ฉันหมายถึงโดย "วางฟังก์ชันเป็นstatic
สมาชิกของคลาส":
#include <iostream>
using namespace std;
void say( char const s[] ) { std::cout << s << std::endl; }
namespace detail {
template< class T, class U >
struct F {
static void impl() { say( "1. primary template" ); }
};
template<>
struct F<int, char> {
static void impl() { say( "2. <int, char> explicit specialization" ); }
};
template< class T >
struct F< char, T > {
static void impl() { say( "3. <char, T> partial specialization" ); }
};
template< class T >
struct F< T, int > {
static void impl() { say( "4. <T, int> partial specialization" ); }
};
}
template< class T, class U >
void f() { detail::F<T, U>::impl(); }
int main() {
f<char const*, double>();
f<int, char>();
f<char, double>();
f<double, int>();
}
template<typename T, typename U> void f(T t, U u) {}
ยังtemplate<> void f(int t, char u) {}
จะได้รับอนุญาต