티스토리 뷰
아래 링크를 통해 가입시 바이낸스 코인 거래수수료 25% 평생할인!
25% lifetime discount on Binance Coin transaction fees when you sign up through the link below!
https://accounts.binance.com/en/register?ref=286562663
C# virtual override *다형성 상속
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication1
{
class Parent
{
public virtual void show()
{
Console.WriteLine("부모클래스:show");
}
}
class Child : Parent
{
public override void show()
{
Console.WriteLine("자식클래스 : Show");
}
}
class Program
{
static void Main(string[] args)
{
Parent obj = new Parent();
obj.show(); //부모클래스:show 출력
obj = new Child();
obj.show(); //자식클래스 : Show 출력
}
}
}
--
virtual , override 빼면
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication1 { class Parent { public void show() { Console.WriteLine("부모클래스:show"); } } class Child : Parent { public void show() { Console.WriteLine("자식클래스 : Show"); } } class Program { static void Main(string[] args) { Parent obj = new Parent(); obj.show(); //부모클래스:show 출력 obj = new Child(); obj.show(); //부모클래스:show 출력 } } }
----------------
virtual , override 빼면 2
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication1 { class Parent { public void show() { Console.WriteLine("부모클래스:show"); } } class Child : Parent { public void show() { Console.WriteLine("자식클래스 : Show"); } } class Program { static void Main(string[] args) { Parent obj = new Parent(); obj.show(); //부모클래스:show 출력 Child obj2 = new Child(); obj2.show(); //자식클래스:show 출력 } } }
바이낸스 코인 거래수수료 25% 평생할인받기
비트코인 바이낸스 거래소 선물거래, 마진거래방법 가이드 - 바이낸스 회원가입(계정생성)
비트코인 바이낸스 마진거래방법, 선물거래방법 - USDT