a=“你好”,b=“再见”,c=a*b 然后打印 c?
我遇到一个这样的问题
a="hello", b="bye", c=a*b
那么 print c 的答案是什么?
I came across one question like this
a="hello", b="bye", c=a*b
then what will the anwser of print c?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这取决于
*
运算符在字符串数据类型上的实现。这通常取决于您使用的编程语言。在我知道的大多数静态类型语言中,这个运算符不是在字符串上定义的。That depends on the implementation of the
*
operator on string data types. And that usually depends on the programming language you use. In most statically typed languages I know, this operator is not defined on strings.在 JavaScript 中,c 的值为 NaN。
In JavaScript, the value of c will be NaN.
我认为这是一个棘手的问题。您不能将一个字符串与另一个字符串相乘。我认为任何语言都不允许这样做。
It's a trick question, I think. You can't multiply a string with another string. I don't think any language allows this.