mirror of
https://github.com/cpp-best-practices/cppbestpractices.git
synced 2025-12-17 19:24:36 +03:00
653 B
653 B
Considering Correctness
Avoid Typeless Interfaces
Bad Idea:
std::string find_file(const std::string &base, const std::string &pattern);
Better Idea:
std::filesystem::path find_file(const std::filesystem::path &base, const std::regex &pattern);
The above is better but still suffers from having implicit conversions from std::string to std::filesystem::path and back.
Consider using a typesafe library like
Note that stronger typing can also allow for more compiler optimizations.
- [Sorting in C vs C++](Sorting in C vs C++.pdf)