C++과 C++ ISO 표준 자체로 쓰여진 클래스들과 함수들의 집합이다C++ 표준 라이브러리는 표준 템플릿 라이브러리(STL : Standard Template Library)에 의해 도입된 관습에 기반하며, 제네릭 프로그래밍과 STL의 개발자들의 연구에 영향을 받았다
Memory allocation (메모리 할당), references (참조), pointers to members,switchC++은 세 가지 기본 타입의 메모리 할당을 지원한다.1\. 정적 메모리 할당(static memory allocation) : 정적 변수와
흐흐 또시작이다, Ad-hoc polymorphism, operators overload andorthodox canonical classes인스턴스는 객체가 메모리에 구현된 실체라고 한다. class test{}이렇게 클래스를 생성하면 test가 객체다. test a
지난시간에 공부했던 개념이다.
재밌는 cpp 04를 시작해보겠습니다!Subtype polymorphism, abstract classes, interfaces우선 다형성 용어에 대해 확실히 이해해보자.다형성의 종류는 크게 3가지로 나뉘어 진다. 지금까지 계속사용한 다형성이다. 간단히 말하자면 함수
Repetition and Exceptions반복문 그리고
C++ Casts캐스팅에 대해 공부해보자. C++ provides a variety of ways to cast between types:다음과 같은 방법의 캐스팅을 제공한다. static_castreinterpret_castconst_castdynamic_castC-
함수나 클래스를 개별적으로 다시 작성하지 않아도, 여러 자료 형으로 사용할 수 있도록 하게 만들어 놓은 틀.c++에서 템플릿은 두가지로 나눌 수 있다.함수 템플릿, 클래스 템플릿. 함수를 만들어 낼때, 함수의 기능은 명확하지만, 자료형을 모호하게 둡니다. 기존의 오
STL에 있는 컨테이너, 반복자, 알고리즘, 함수객체를 정리합니다.
네임스페이스, 클래스, 멤버 함수, stdio 스트림,초기화 목록, 정적, const 및 많은 기본 항목Summary: 이 문서는 cpp모듈에 대한 주제가 포함되어있습니다.
Inheritance 상속Turn-in directory : ex00/Files to turn in : Makefile ClapTrap.cpp ClapTrap.hpp main.cppForbidden functions : NoneHere you have to make a
Subtype polymorphism, abstract classes, interfaces다형성이란?하나의 추상 인터페이스에 대해 코드를 작성하고 이 추상 인터페이스에 대해 서로 다른 구현을 연결할 수 있는 능력
Repetition and Exceptions반복 그리고 예외Summary: This document contains the subject for Module 05 of the C++ modules.엄마 난 커서 관료가 되고 싶어!Mommy, when I grow up
C++ Castsc++ casts에 대해 배워보자. • For each exercise, any cast situation is solved by a specific cast. The evaluation willcheck if your choice corresponds
Write a class template Array that contains elements of type T and that allows thefollowing behavior:• Construction with no parameter: creates an empty
Templated containers, iterators, algorithmsYou will notice that in this particular subject, a lot of the problems you are asked to solve can be solved