duplicate symbol '_ZN2tn9direction4core3apineERKNSt3__16vectorINS2_30TruckRestrictionCharacteristicENS3_9allocatorIS5_EEEESA' in:
duplicate symbol '_ZN2tn9direction4core3apieqERKNSt3__16vectorINS2_30TruckRestrictionCharacteristicENS3_9allocatorIS5_EEEESA' in:
using TruckRestrictionGroup = std::vector<tn::direction::core::api::TruckRestrictionCharacteristic>;
// 不能這么定義
bool operator==(const TruckRestrictionGroup& lhs, const TruckRestrictionGroup& rhs)
{
if (lhs.size() != rhs.size())
{
return false;
}
auto sorted_lhs = lhs;
auto sorted_rhs = rhs;
std::sort(sorted_lhs.begin(), sorted_lhs.end());
std::sort(sorted_rhs.begin(), sorted_rhs.end());
return sorted_lhs == sorted_rhs;
}
bool operator!=(const TruckRestrictionGroup& lhs, const TruckRestrictionGroup& rhs)
{
return !(lhs == rhs);
}
在頭文件中聲明点把,在源文件中定義:確保在頭文件中僅聲明比較操作符,在源文件中定義它們,以避免重復定義韭山。