百科问答小站 logo
百科问答小站 font logo



c++初学者有必要深挖这样的问题吗? 第1页

  

user avatar   haozhi-yang-41 网友的相关建议: 
      

不用什么深挖,因为这就是:规定

这是C++03的版本(2.13.4.1):

A string literal is a sequence of characters (as defined in 2.13.2) surrounded by double quotes, optionally beginning with the letter L,asin"..."or L"...". A string literal that does not begin with L is an ordinary string literal, also referred to as a narrow string literal. An ordinary string literal has type “array of n const char” and static storage duration (3.7), where n is the size of the string as defined below, and is initialized with the given characters. A string literal that begins with L, such as L"asdf", is a wide string literal. A wide string literal has type “array of n const wchar_t” and has static storage duration, where n is the size of the string as defined below, and is initialized with the given characters.

至于很多人回答的:严格按照C++语法你的代码会编不过的原因,也已经用黑体给你标了。

其他版本的C++,甚至c的,自己也可以下载个标准文本,然后用“string literal”这个关键字去搜。


btw:

这种东西在我看来不值得花什么精力去深究,因为它本质上就是一个可以让大家更便于编写代码,也让代码更好读的语法糖

毕竟你可以老老实实的写一个字符数组,然后用strcpy初始化。最后等着编译器发现这个变量可以执行编译优化,最终优化成一个指向常量的指针,在结果上是一样的——当然,有没有这么牛X的编译器,倒是个问题。




  

相关话题

  如何在 Linux 下利用 Vim 搭建 C/C++ 开发环境? 
  C++的new操作符,底层使用的是malloc吗,在析构时,是如何确定自己需要释放内存的大小的? 
  大一新生做C语言课设被强制要求使用 Borland C++ 3.1,此IDE相对于其他IDE有何优点? 
  C++对比其他语言到底难在哪里?有人对C++异常推崇,除了性能优势,还有什么优点,怎么学好C++? 
  如果加班是自愿的,你们会为了钱加班吗? 
  我经常看到 Java 架构师的说法,但是很少看到 C++ 架构师的说法。有哪些造成该现象的原因? 
  C++ make_tuple返回值类型,会有效率问题吗? 
  C++ 运动完上一个函数到下一个函数时,上一个函数里的变量值(结构体变量)为什么没保留住,变成零了? 
  将文件编译成某种代码,打印到A4纸上,这种想法是否可行? 
  你们说的ABI,Application Binary Interface到底是什么东西? 

前一个讨论
如果高中生合成了新的化学元素,能被保送清华北大的化学学院么?
下一个讨论
勘探油田的技术难点在哪里?





© 2025-04-03 - tinynew.org. All Rights Reserved.
© 2025-04-03 - tinynew.org. 保留所有权利