> For the complete documentation index, see [llms.txt](https://howarder3.gitbook.io/wongwongsamplecode/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://howarder3.gitbook.io/wongwongsamplecode/c++/c++-struct-class/c++-explicit.md).

# C++ explicit

* 禁用 「=」 作為 constructor (copy-initialization)，只能 direct-initialization struct()
* 避免 10, "10" 分不清
* a = 10, a(10)&#x20;
  * explicit 禁用 a = 10
* a = "10", a("10")
* <https://shengyu7697.github.io/cpp-explicit/>
