Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

JAVA Why the else statement changes the output? I want to know how the else statement change the output in this way if it is

JAVA

Why the else statement changes the output?

I want to know how the else statement change the output in this way if it is supposed to do the same thing as the second output... so Why?

if we add an else statement the outputs is:

[spruce]

null

and without is:

[six, spruce]

null

this is the code that causes this issue:

public void add(String word, String entry) { if(!this.dictionary.containsKey(word)){ this.dictionary.put(word, new HashSet()); } this.dictionary.get(word).add(entry); }

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image_2

Step: 3

blur-text-image_3

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Application Development And Design

Authors: Michael V. Mannino

1st Edition

0072463678, 978-0072463675

More Books

Students also viewed these Databases questions