เมื่อฉันใช้เทมเพลตพิเศษในไฟล์ออบเจ็กต์อื่นฉันได้รับข้อผิดพลาด "คำจำกัดความหลายรายการ" เมื่อทำการเชื่อมโยง วิธีแก้ปัญหาเดียวที่ฉันพบคือการใช้ฟังก์ชัน "อินไลน์" แต่ดูเหมือนวิธีแก้ปัญหาบางอย่าง ฉันจะแก้ปัญหาโดยไม่ใช้คีย์เวิร์ด "อินไลน์" ได้อย่างไร ถ้าเป็นไปไม่ได้ทำไม?
นี่คือรหัสตัวอย่าง:
paulo@aeris:~/teste/cpp/redef$ cat hello.h
#ifndef TEMPLATE_H
#define TEMPLATE_H
#include <iostream>
template <class T>
class Hello
{
public:
void print_hello(T var);
};
template <class T>
void Hello<T>::print_hello(T var)
{
std::cout << "Hello generic function " << var << "\n";
}
template <> //inline
void Hello<int>::print_hello(int var)
{
std::cout << "Hello specialized function " << var << "\n";
}
#endif
paulo@aeris:~/teste/cpp/redef$ cat other.h
#include <iostream>
void other_func();
paulo@aeris:~/teste/cpp/redef$ cat other.c
#include "other.h"
#include "hello.h"
void other_func()
{
Hello<char> hc;
Hello<int> hi;
hc.print_hello('a');
hi.print_hello(1);
}
paulo@aeris:~/teste/cpp/redef$ cat main.c
#include "hello.h"
#include "other.h"
int main()
{
Hello<char> hc;
Hello<int> hi;
hc.print_hello('a');
hi.print_hello(1);
other_func();
return 0;
}
paulo@aeris:~/teste/cpp/redef$ cat Makefile
all:
g++ -c other.c -o other.o -Wall -Wextra
g++ main.c other.o -o main -Wall -Wextra
สุดท้าย:
paulo@aeris:~/teste/cpp/redef$ make
g++ -c other.c -o other.o -Wall -Wextra
g++ main.c other.o -o main -Wall -Wextra
other.o: In function `Hello<int>::print_hello(int)':
other.c:(.text+0x0): multiple definition of `Hello<int>::print_hello(int)'
/tmp/cc0dZS9l.o:main.c:(.text+0x0): first defined here
collect2: ld returned 1 exit status
make: ** [all] Erro 1
ถ้าฉันยกเลิกการใส่เครื่องหมาย "อินไลน์" ไว้ใน hello.h โค้ดจะคอมไพล์และรัน แต่ดูเหมือนจะเป็น "วิธีแก้ปัญหา" บางอย่างสำหรับฉัน: จะเกิดอะไรขึ้นถ้าฟังก์ชันพิเศษมีขนาดใหญ่และใช้หลายครั้ง ฉันจะได้รับไบนารีขนาดใหญ่หรือไม่? มีวิธีอื่นในการทำเช่นนี้หรือไม่? ถ้าใช่อย่างไร ถ้าไม่เพราะเหตุใด
ฉันพยายามมองหาคำตอบ แต่สิ่งที่ได้คือ "ใช้อินไลน์" โดยไม่มีคำอธิบายเพิ่มเติม
ขอบคุณ