suchen

Heim  >  Fragen und Antworten  >  Hauptteil

javascript – Fragen zum ternären JS-Operator

Warum bleibt das Ergebnis unverändert, wenn sich die Bedingungen ändern, wenn der String-Verkettungsoperator im ternären Operator verwendet wird?

        var notice = "she is "+true? "?":"nt"+" here."
        alert(notice);    // "?"

        var notice = "she is "+false? "?":"nt"+" here."
        alert(notice);    // "?"

Wenn Sie jedoch den String-Verkettungsoperator und den String vor dem ternären Operator entfernen, wird alles wieder normal

        var notice = false? "?":"nt"+" here."
        alert(notice);    // "nt here."

        var notice = true? "?":"nt"+" here."
        alert(notice);    // "?"

Brauchen Sie eine Lösung?

天蓬老师天蓬老师2778 Tage vor659

Antworte allen(3)Ich werde antworten

  • 曾经蜡笔没有小新

    曾经蜡笔没有小新2017-05-19 10:19:40

    首先:
    什么是三目运算符?
    {1} ? {2} : {3} ;
    JS引擎首先执行 Boolean({1}) 如果为 True 则返回 {2}False则返回{3}
    然后:
    "she is "+true === "she is true" //严格相等
    所以
    Boolean("she is "+true) === Boolean("she is true") // 等于 True
    Boolean("she is "+false) === Boolean("she is false") // 也等于 True


    但是:
    false? "?":"nt"+" here." 中的false是布尔值.
    所以Boolean(false) === false
    所以Boolean(true) === true

    Antwort
    0
  • 高洛峰

    高洛峰2017-05-19 10:19:40

    这是一个运算符优先级问题. 首先+(字符串连接运算符)优先级比?:(三目运算符)优先级高,所以先执行+运算符.
    所以两种情况下,分别得到"she is "+true"she is "+false.
    再执行三目元算符,但是"she is "+true"she is "+false(String,除了"")转换成Boolean均为true. 所以三目运算符条件为真,所以得到结果为"?".

    Antwort
    0
  • 我想大声告诉你

    我想大声告诉你2017-05-19 10:19:40

    var notice = "she is "+(true? "?":"nt")+" here."
            alert(notice);    // "?"
    var notice = "she is "+(false? "?":"nt")+" here."
            alert(notice);    // "?"

    Antwort
    0
  • StornierenAntwort