Upcast and Downcast in Java | Code2night.com
Code2night
  • Home
  • Blogs
  • Guest Posts
  • Tutorial
  • Post Blog
  • Register
  • Login
  1. Home
  2. Blogpost

Upcast and Downcast in Java

Date- Sep 03,2023

1803


Upcast means to create an object of the sub(child) class and access methods and variables of the child class using the child class object.

package Tutorial_01;

public class MainClass extends TestOne{

	int x = 50000;
	void TestResult()
	{
		System.out.println("Child Class Values...:"+x);
	}

	public static void main(String[] args) {
		// TODO Auto-generated method stub
		
			///-------------Upcast Example--------------------------------------
				MainClass z = new MainClass(); //  new object(child class object)
				z.TestResult();
				
		
	}

}

Downcast means to create an object of extend class (parent class) and access methods and variables of parent class using parent class object.

package Tutorial_01;

public class TestOne {
	int x = 1000;
	void TestResult()
	{
		System.out.println("Parent Class Values...:"+x);
	}

}

package Tutorial_01;

public class MainClass extends TestOne{

	int x = 50000;
	void TestResult()
	{
		System.out.println("Child Class Values...:"+x);
	}

	public static void main(String[] args) {
		// TODO Auto-generated method stub
		
////----------DownCast Example----------------------------------------
		TestOne y = new TestOne();  // new obj  (parent class object)
			y.TestResult();
		
	}

}

Comments

Tags

LinkedinLogin
LinkedinProfile
GetLinkedinProfile
C#
Aspnet
MVC
Linkedin
ITextSharp
Export to Pdf
AspNet Core
AspNet
View to Pdf in Aspnet
Model Validation In ASPNET Core MVC 60
Model Validation
Model Validation In ASPNET Core MVC
Model Validation In ASPNET
Image Compression in AspNet
Compress Image in c#
AspNet MVC
Free Download for Youtube Subscribers!

First click on Subscribe Now and then subscribe the channel and come back here.
Then Click on "Verify and Download" button for download link

Subscribe Now | 1210
Download
Support Us....!

Please Subscribe to support us

Thank you for Downloading....!

Please Subscribe to support us

Continue with Downloading
Be a Member
Join Us On Whatsapp Join Us On Facebook

Welcome To Code2night, A common place for sharing your programming knowledge,Blogs and Videos

  • Panipat
  • info@Code2night.com

Links

  • Home
  • Blogs
  • Tutorial
  • Post Blog

Popular Tags

Copyright © 2025 by Code2night. All Rights Reserved

  • Home
  • Blog
  • Login
  • SignUp
  • Contact
  • Terms & Conditions
  • Refund Policy
  • About Us
  • Privacy Policy
  • Json Beautifier
  • Guest Posts