std::string sprintf(const char *s) { std::stringstream ss; _sprintf(ss, s); return ss.str(); } void _sprintf(std::stringstream & ss, ...
確定! 回上一頁