title abseil C++ Tips

date: 2022-10-28 00:00

url: abseil_cpp_tips

学习abseil C++ Tips

Tip of the Week #1: string_view

当函数参数为(const) string时,常见的一般有3种方法,第三种方法可能不太常见。

// C Convention

void TakesCharStar(const char* s);

// Old Standard C++ convention

void TakesString(const std::string& s);

......