alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

Java example source code file (NASHORN-63.js)

This example Java source code file (NASHORN-63.js) is included in the alvinalexander.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Learn more about this Java project at its project page.

Java - Java tags/keywords

boolean, error, number, object, objects, same, string

The NASHORN-63.js Java example source code

/*
 * Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved.
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 * 
 * This code is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 only, as
 * published by the Free Software Foundation.
 * 
 * This code is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 * version 2 for more details (a copy is included in the LICENSE file that
 * accompanied this code).
 * 
 * You should have received a copy of the GNU General Public License version
 * 2 along with this work; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 * 
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 * or visit www.oracle.com if you need additional information or have any
 * questions.
 */

/**
 * NASHORN-63 :  equality and strict equality implementations are broken.
 *
 * @test
 * @run
 */

function error(msg) {
    print("Error: " + msg);
}

if ((new Boolean(true) != new Boolean(true)) !== true) {
    error('Different Boolean objects are equal');
}

if ((new Boolean(false) != new Boolean(false)) !== true) {
    error('Different Boolean objects are equal');
}

if ((new Boolean(true) != new Boolean(false)) !== true) {
    error('Different Boolean objects are equal');
}

if ((new Number(3.14) != new Number(3.14)) !== true) {
    error('Different Number objects are equal');
}

if ((new Number(2.718) != new Number(3.14)) !== true) {
    error('Different Number objects are equal');
}

if ((new String("nashorn") != new String("nashorn")) !== true) {
    error('Different String objects are equal');
}

if ((new String("ecmascript") != new String("nashorn")) !== true) {
    error('Different String objects are equal');
}

if ((new Object() != new Object()) !== true) {
    error('Different Objects are equal');
}

var obj1 = {}; 
var obj2 = obj1;
if (obj1 != obj2) {
    error(' Same object literals are not equal');
}

if ((new Boolean(0) != new Number(0)) !== true) {
    error('a Boolean and a Number object are equal');
}

if ((new Number(42) != new String("42")) !== true) {
    error('a Number and a String object are equal');
}

if ((new String("1") != new Boolean(true)) !== true) {
    error('a String and a Boolean object are equal');
}

// strict equality checks
if ((new String("abc")) === "abc") {
    error('a String and a primitive string are strict equal');
}

if ((new Number(42)) === 42) {
    error('a Number and a primitive number are strict equal');
}

if ((new Boolean(true)) === true) {
    error('a Boolean and a primitive boolean are strict equal');
}

if ((new Boolean(false)) === false) {
    error('a Boolean and a primitive boolean are strict equal');
}

if ((new Object()) === (new Object())) {
    error('two different Objects are strict strict equal');
}

if ({} === {}) {
    error('two different Objects are strict strict equal');
}

Other Java examples (source code examples)

Here is a short list of links related to this Java NASHORN-63.js source code file:

... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.