Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- paramiko
- VS Code
- Visual Studio
- 프로그래머스
- C#
- Numpy
- JSON
- OpenCV
- 핑거스타일
- label
- LIST
- C++
- error
- C
- pandas
- 채보
- 오류
- Docker
- windows forms
- SSH
- pytorch
- 기타 연주
- Selenium
- pip
- ubuntu
- YOLO
- mysql
- Python
- 명령어
- Linux
Archives
- Today
- Total
목록IS (1)
기계는 거짓말하지 않는다
C# is, as, typeof 키워드
- is is는 지정된 형식과 호환되는지 확인한다. public class Animal { } public class Rabbit : Animal { } class Program { static void Main(string[] args) { Animal A = new Animal(); Console.WriteLine(A is Animal); // True Console.WriteLine(A is Rabbit); // False Rabbit R = new Rabbit(); Console.WriteLine(R is Animal); // True Console.WriteLine(R is Rabbit); // True } } - as as는 지정된 형식 또는 nullable 값 형식으로 명시적으로 변환한다. ..
C#
2021. 7. 16. 20:50