2
我已經在我的課像這樣一些方法:避免使用不同數據類型的代碼重複?
static std::string numberToString(int n);
static std::string numberToString(float n);
static std::string numberToString(double n);
std::string encodeVector(const std::vector<int>& intVec);
std::string encodeVector(const std::vector<float>& floatVec);
std::string encodeVector(const std::vector<double>& doubleVec);
的編碼方法取決於numberToString方法。
有沒有辦法讓這個更通用,避免代碼重複?
謝謝