Quantcast
Channel: Learn Java Programming
Viewing all articles
Browse latest Browse all 39

Java Type Casting : Inheritance

$
0
0

Converting one type of value to another is called as Type Casting. Different Forms of Type Casting : There are two types of type casting. Live Example of Type Casting in Inheritance : package com.c4learn.inheritance; class Vehicle { String nameOfVehicle; } class TwoWheeler extends Vehicle { String vehicleModel; } public class TypeCastExample { public static(...)

The post Java Type Casting : Inheritance appeared first on Learn Java Programming.


Viewing all articles
Browse latest Browse all 39

Trending Articles