有没有办法总是将参数和参数强制为一行?
例如,这个:
if(value != "course" || value != "module" || value != "lesson")
应该是这样的:
if(value != "course" ||
value != "module" ||
value != "lesson")
或这个:
if(value != "course"
|| value != "module"
|| value != "lesson")
和这个:
void some_class::some_func(const std:string s, const std::string t)
应该是这样的:
void some_class::some_func(const std:string s,
const std::string t)
或这个:
void some_class::some_func(const std:string s
, const std::string t)