일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- suninatas 풀이
- xss game
- object
- python
- 자바스크립트
- sql injection
- lord of sql injection
- 김성엽 대표님
- 포인터
- 파이썬
- jQuery
- 백준 알고리즘
- burp suite
- property
- github
- 조건문
- xss game 풀이
- document
- blind sql injection
- 사칙연산
- IF문
- 객체
- htmlspecialchars
- 백준 파이썬
- 메소드
- window
- Pwndbg
- 배열
- element 조회
- 함수
Archives
- Today
- Total
목록생성자 사용법 (1)
power-girl0-0
[ C++ ] 생성자와 소멸자를 이용한 예제
생성자와 소멸자에 대한 개념은 아래 주소를 참고해주세요 : ) ( 주소 : 2021.03.23 - [언어/C++] - [ C++ ] 클래스 & 객체) [ C++ ] 클래스 & 객체 클래스 & 객체 개요 클래스 객체를 만들어내기 위해 정의된 설계도, 틀이다. 클래스는 객체가 아니다. 클래스 내부에는 멤버변수와 멤버 함수 선언이 가능하다. 객체 객체는 생성될 때 클래 power-girl0-0.tistory.com 아래 예제는 생성자를 만들어, 이름과 나이를 입력받는 예제이다. #include #include using namespace std; class Person{ string name; int age; public: Person(); Person(string n, int a); Person(string..
언어/C++
2021. 3. 23. 15:52