https://wandbox.org/permlink/skxmougiYnaw1f1a
一開始遭遇到這個compile warning
warning: instantiation of variable 'Foo<int>::bar' required here, but no defin
ition is available [-Wundefined-var-template]
其實我不太知道他為什麼會warning
我確實有define在test.cpp這個translation unit
不懂的是 他感覺找不到定義 卻讓我pass, run time 也有拿到對的數值.
而g++不會有warning
1. 到這邊我還是不知道到底哪裡寫的不夠正確?
然而我試著解決這warning
於是我把 上面的
//b.
// extern template class Foo<int>;
打開
https://wandbox.org/permlink/j2ANWRBoeIZZJAHE
link error
undefined reference to `Foo<int>::Test()'
如果不呼叫 這個warning確實可以這樣解決
但我必須呼叫這function
2. 為什麼他這樣會說undefined? .h裡面明確有包含定義阿?
然而
//a.
// template class Foo<int>;
打開後
3. 我認為我已經明確讓他產生程式碼了.... warning還是存在
回歸1. 的問題 我到底少做了什麼讓clang這樣出warning
4. 對於template class內 有static function or data
最正確的寫法該怎麼寫.
網路上有查到
在test.h 直接寫
template<class T>
int Foo<T>::bar = 初始直;
test.cpp一樣寫
template<>
int Foo<int>::bar = 123;
但我實際上在專案遇到一個況狀是
我某個cpp 寫Foo<int>::bar 拿到的卻是.h給的初始直(我認為是他初始化順序優先於te
st.cpp)
所以目前毫無辦法處理這warning
5. 這似乎沒辦法用static是internal linkage 來解釋...讓我整個無法通透理解
請教各位有什麼方法處理這問題
謝謝