Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这听起来像是一个愚蠢的问题......但我在任何地方都找不到 strconv.Itoa 中的“a”实际上代表什么。如果它采用整数并将其转换为字符串,为什么该函数不称为 Itos?
整数到 ASCII。它来自 C 语言/UNIX。有关更多信息,请参阅此线程:“atoi”这个名字是从哪里来的?
在 C 语言中,没有字符串这样的概念,您有以空字符结尾的字符数组。
感谢@mvp!