摘要:
不错的思维题 阅读全文
posted @ 2020-10-30 20:50
HH_Halo
阅读(238)
评论(0)
推荐(0)
摘要:
一、初始化 初始化有两种方式,其中使用等号的是拷贝初始化,不使用等号的是直接初始化。 string str1 = "hello world"; // str1 = "hello world" string str2("hello world"); // str2 = "hello world" st 阅读全文
posted @ 2020-10-30 15:16
HH_Halo
阅读(13)
评论(0)
推荐(0)