일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- C# delegate
- git
- c# winform
- gitlab
- 유니티
- Algorithm
- C++
- 도커
- c#
- Python
- docker
- Data Structure
- Unity
- HTML
- 포인터
- vim
- 다트 언어
- Houdini
- C언어 포인터
- c# 추상 클래스
- c# 윈폼
- 깃
- dart 언어
- 구조체
- Flutter
- jupyter lab
- jupyter
- c언어
- 플러터
- github
Archives
- Today
- Total
목록c# 봉인 메소드 (1)
nomad-programmer
[Programming/C#] 오버라이딩 봉인 (sealed)
클래스를 상속이 안 되도록 봉인하는 것처럼 메소드도 오버라이딩되지 않도록 봉인할 수 있다. 그렇다고 모든 메소드를 봉인할 수 있는 것은 아니다. virtual로 선언된 가상 메소드를 오버라딩한 버전의 메소드만이 가능하다. using System; namespace CSharpExample { class Base { public virtual void SealMe() { } } class Derived : Base { public sealed override void SealMe() { base.SealMe(); } } class WantToOverride : Derived { public override void SealMe() { } } class MainApp { static int Main(stri..
Programming/C#
2020. 9. 9. 14:14