wau2380's playground

Introducing C++ 본문

English/C++ Programming

Introducing C++

wau2380 2021. 9. 3. 21:03

what is c++? 

c++ is an extension(확장) of the C programming language that was first implemented(구현된) on the UNIX operating system by Dennis Ritchie way back(오래전) in 1972

c++은 오래전 1972년에 데니스리치에 의해 유닉스 기반 시스템으로 첫 번째로 구현된 C 프로그래밍 언어의 확장판이다.

C is a flexible(유연한) programming language that remains(남아있는) popular today, and is used on a large number of platforms for everything from microcontrollers to the most advanced scientific systems

C는 오늘날에도 인기가 남아있는 유연한 프로그래밍 언어입니다, 그리고 마이크로컨트롤러로부터 대부분의 전문적인 과학적인 시스템까지 많은 플랫폼들이 C를 사용합니다.

C++ was developed by Dr. Bjarne Stroustrup between 1983-1985 while working at AT&T Bell Labs in New Jersey.

C++은 1983-1985년 사이에 AT&T에 밸 연구소에서 일하는 동안 Dr. Bjarne Stroustrup 의해 개발되었습니다.

He added features(기능) to the original C language to produce what he called "C with classes".

그는 기존 C 언어에 기능을 추가하여 "C with classes"라고 불렀습니다.

These classes define programming objects with specific(특정한) features that transform(변환) the procedural(절차상의) nature(성격) of c into the object-oriented programmig(객체 지향 프로그래밍) language of C++

이 클래스들은 C의 절차상의 성격을 C++의 객체 지향 프로그래밍 언어로 변환하는 특정한 기능들과 가진 프로그래밍 객체를 정의합니다.

The C programming language was so named as(접속사) it succeeded(계승) an earlier programming language named "B" that had been introduced around 1970.

C 프로그래밍 언어는 가령 더 일찍이 1970년경에 소개되어졌던 프로그래밍 언어 "B"라는 이름의 프로그래밍 언어를 계승하여 그렇게 이름이 지어졌다.

The name "C++" displays(보이다) some programmers' humor(유머) because the programming ++ increment(증가) operator denotes that C++ is an extension of the C language.

"C++"의 이름은 프로그래밍에서 ++ 증가 연산자가 C++ 이 C 언어의 확장임을 나타내기 때문에 일부 프로그래머들의 유머처럼 보였다.

C++, like C, is not platform-dependent(플랫폼 종속), so programs can be created on any operating system.

C++은, C처럼 , 하나의 운영 체제에서만 실행되는 응용프로그램이 아니다, 그래서 프로그램들은 아무 운영 체제에서 만들어질 수 도 있다.

Most illustrations(삽화) in this book depict(묘사) output on the Windows operating system purely(순수하게) because it is the most widely(넓게) use desktop platform

대부분의 책에 그림들은 순수하게 가장 널리 사용하는 데스크탑 플랫폼이 윈도우이기 때문에 윈도우 운영 체제에 아웃풋을 묘사한다.

The examples can also be created on other platforms such as Linux or macOS.

그 예시들은 또한 리눅스나 맥OS와 같은 다른 플랫폼에서도 만들어질 수도 있다.

retrospect : I learned C++ today, 2021-9-23. I will study why should I learn C++ programming, See you then