- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
处理 Mozilla's Javascript Reference使用我的浏览器控制台。查看 boolean 对象。我使用以下方法遇到了意外行为:
Boolean.prototype.toString() Returns a string of either "true" or "false" depending upon the value of the object. Overrides the Object.prototype.toString() method
如果我实例化一个 boolean 值 true 或 false,它们都会从此方法返回相同的“false”:
var t = Boolean(true);
var f = Boolean(false);
Boolean.prototype.toString(t);
> "false"
Boolean.prototype.toString(f);
> "false"
我知道我可以更可靠地查询对象:
Boolean.prototype.constructor(t);
> true
Boolean.prototype.constructor(f);
> false
所以我要问的是:谁能解释为什么 Boolean.prototype.toString(true) 返回 false,最好是举例说明?
是否存在继承问题,或者是一个错误?我没有得到什么吗?我已经使用 boolean 对象包装器、 boolean 文字和表达式对此进行了测试。我已经在 Mac 上的三个浏览器上重现了这种行为,这是平台问题吗?任何帮助理解此行为的信息都将不胜感激。
最佳答案
Boolean.prototype
上的任何内容都会传递给所有 boolean 值。这意味着 true.toString === Boolean.prototype.toString
,并且执行 true.toString()
就像执行 Boolean.prototype.toString.call(真)
。
当你直接调用Boolean.prototype.toString
时,this === Boolean.prototype
。看着the spec ,我们可以看到它会尝试进行转换,以防您获得 boolean 对象(请记住,Boolean.prototype
实际上是每个 boolean 值的原型(prototype) - 它是一个 boolean 对象):
- Else if Type(B) is Object and the value of the [[Class]] internal property of B is "Boolean", then let b be the value of the [[PrimitiveValue]] internal property of B.
[[PrimitiveValue]] 本质上是一个 valueOf
调用:
Boolean.prototype.valueOf(); //false
Boolean.prototype
在规范 (15.6.4) 中定义为 boolean 对象 false
。
总而言之,这里发生的是,您没有尝试在您想要的变量上调用 toString
,而是在 Boolean.prototype
上调用它,它产生相同的结果每次都有结果。
解决方案:不要那样做。在变量上调用 toString
:t.toString()
、f.toString()
注意您不需要 Boolean(true)
或类似的东西;只需 true
即可。
关于Javascript Boolean.prototype.toString() 意外结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22546958/
正在阅读 Underscore.js 以了解它的 is[String|Number|...] 方法是如何工作的,现在我很困惑。下划线: toString.call(obj) == ['object '
scala> Array(1, 2, 3).toString res1: String = [I@11cf437c scala> List(1, 2, 3).toString res2: String
我在将字符串从 stringbuilder 转换为字符串时遇到问题。问题类似于 this issue但略有不同: 这是我的简化代码: StringBuilder sb = new StringBuil
我正在尝试将从正在构建的搜索功能中名为 Part 的模型返回的 int id 转换为字符串,以便简化搜索。 这是我目前使用的 if 语句: if(part.getId().toString().ind
我需要从所选内容中提取文本并将其发送到 TTS 服务。 TTS 服务将返回一个流 URL 和每个单词的一组索引,指示它们的开始和结束位置(时间和文本)。 当用户播放流时,我想在读出每个单词时突出显示它
我想知道人们在 Java 的 toString() 方法中放入了什么。 我一直在向一些新类添加一些内容,并且想知道它是否应该包含类名。 在类ClassConfig中,我无法决定是否应该拥有 @Over
这个问题已经有答案了: How do I compare strings in Java? (23 个回答) 已关闭 8 年前。 下面是我的主要方法,其中比较两个对象引用。覆盖toString()方法
我的问题是,JAVA中没有提供toString()方法的类是否可以打印出特定信息? 问题在于:我们为我们的应用程序提供了一个记录器(使用aspectJ),它打印出给出的特定参数。例如: public
基本上这就是我想要实现的目标。 classname@address(?)[original toString()], object's name, object's age @Override pub
据我所知,Scala 中的中缀运算符的使用应该等同于方法的调用。所以: scala> "a" + 3.toString res0: java.lang.String = a3 是相同的: scala>
这个问题已经有答案了: Why can't I access a property of an integer with a single dot? (5 个回答) 已关闭 7 年前。 functio
我正在进行测试,并且给出了很多单元(隐藏)测试,但是我的一段代码遇到了这个错误。大家能帮帮我吗? getString(comment) { const authorName = comment.get
return toString.call(obj) 和 return obj.toString() 有什么区别? 我通常会找到具有这些不同风格的代码 最佳答案 toString.call(obj) 返
例如,我必须在每个数字到字符串的转换中使用 .ToString(CultureInfo.CurrentCulture)。我能否以某种方式重写 .ToString(),这样我就不会在字符串转换中显式地收
var d = []; console.log(typeof d); // weird! console.log(d.toString()); //Prints nothing since there
当对象字面量调用toString()方法如{}.toString()会导致语法错误,但是当数组字面量调用toString()没关系。当我将对象文字分配给一个变量时,当它调用 toString() 方法
我在打印特殊数组时遇到问题: 我使用 System.out.println(Arrays.toString()); 打印多个对象的数组但现在数组中充满了对象,这些对象具有 char 值,我想打印分配给
关闭。这个问题是not reproducible or was caused by typos .它目前不接受答案。 这个问题是由于错别字或无法再重现的问题引起的。虽然类似的问题可能是on-topi
> ~0..toString(2) -1 > ~1..toString(2) -2 > ~2..toString(2) -11 > ~3..toString(2) -12 > (~1).toStrin
这是我的问题,我的机器使用法语文化,因此默认情况下它以法语方式解析 (3,141592)。 如果机器文化不是美国,这里是重现我的问题的代码: float number = 4103.26808
我是一名优秀的程序员,十分优秀!