Demonstrate how the Java operator instanceof tests to verify if an object is an instance of another class or not. You will create 3 classes, the main, a simple class and another that is a child of the simple. Type up the code and submit the results.
Demonstrate how the Java operator instanceof tests to verify if an object is an instance of another class or not. You will create 3 classes, the main, a simple class and another that is a child of the simple. Type up the code and submit the results.
Chapter10: Introduction To Inheritance
Section: Chapter Questions
Problem 16RQ
Related questions
Concept explainers
OOPs
In today's technology-driven world, computer programming skills are in high demand. The object-oriented programming (OOP) approach is very much useful while designing and maintaining software programs. Object-oriented programming (OOP) is a basic programming paradigm that almost every developer has used at some stage in their career.
Constructor
The easiest way to think of a constructor in object-oriented programming (OOP) languages is:
Question
Demonstrate how the Java operator instanceof tests to verify if an object is an instance of another class or not. You will create 3 classes, the main, a simple class and another that is a child of the simple. Type up the code and submit the results.
![MAIN CLASS
public class InstanceOfExample {
public static void main(String[] args) {
SIMPLE CLASS
public class SimpleClass {
}
SimpleClass sc = new SimpleClass();
AnotherSimpleClass asc = new AnotherSimpleClass();
boolean b1 = asc instanceof SimpleClass;
boolean b2 = sc instanceof AnotherSimpleClass;
System.out.println("Is AnotherSimpleClass an instance of SimpleClass:
System.out.println("Is SimpleClass an instance of AnotherSimpleClass:
private int myNumber;
private String myName;
public double change;
public void setVars(int num, String name)
{
}
public int getNumber ()
{
return myNumber;
}
}
myNumber= num;
myName = name;
{
public String getName()
return myName;
ANOTHER SIMPLE DERIVED CLASS
public class AnotherSimpleClass extends SimpleClass{
}
public String pirntOut() {
return "I am a derived class!";
b1);
+ b2);](/v2/_next/image?url=https%3A%2F%2Fcontent.bartleby.com%2Fqna-images%2Fquestion%2Fe4aa3b5e-e7fa-4aac-8b86-8434ebe6fb39%2F18926e04-46c4-4be9-98a2-db8df3816365%2F0nvc7t_processed.png&w=3840&q=75)
Transcribed Image Text:MAIN CLASS
public class InstanceOfExample {
public static void main(String[] args) {
SIMPLE CLASS
public class SimpleClass {
}
SimpleClass sc = new SimpleClass();
AnotherSimpleClass asc = new AnotherSimpleClass();
boolean b1 = asc instanceof SimpleClass;
boolean b2 = sc instanceof AnotherSimpleClass;
System.out.println("Is AnotherSimpleClass an instance of SimpleClass:
System.out.println("Is SimpleClass an instance of AnotherSimpleClass:
private int myNumber;
private String myName;
public double change;
public void setVars(int num, String name)
{
}
public int getNumber ()
{
return myNumber;
}
}
myNumber= num;
myName = name;
{
public String getName()
return myName;
ANOTHER SIMPLE DERIVED CLASS
public class AnotherSimpleClass extends SimpleClass{
}
public String pirntOut() {
return "I am a derived class!";
b1);
+ b2);
Expert Solution

This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
Step by step
Solved in 3 steps

Knowledge Booster
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.Recommended textbooks for you

EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT
Programming Logic & Design Comprehensive
Computer Science
ISBN:
9781337669405
Author:
FARRELL
Publisher:
Cengage

Microsoft Visual C#
Computer Science
ISBN:
9781337102100
Author:
Joyce, Farrell.
Publisher:
Cengage Learning,

EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT
Programming Logic & Design Comprehensive
Computer Science
ISBN:
9781337669405
Author:
FARRELL
Publisher:
Cengage

Microsoft Visual C#
Computer Science
ISBN:
9781337102100
Author:
Joyce, Farrell.
Publisher:
Cengage Learning,

Systems Architecture
Computer Science
ISBN:
9781305080195
Author:
Stephen D. Burd
Publisher:
Cengage Learning

C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr

Programming with Microsoft Visual Basic 2017
Computer Science
ISBN:
9781337102124
Author:
Diane Zak
Publisher:
Cengage Learning