°£Æí°áÁ¦, ½Å¿ëÄ«µå û±¸ÇÒÀÎ
ÀÎÅÍÆÄÅ© ·Ôµ¥Ä«µå 5% (32,300¿ø)
(ÃÖ´ëÇÒÀÎ 10¸¸¿ø / Àü¿ù½ÇÀû 40¸¸¿ø)
ºÏÇǴϾð ·Ôµ¥Ä«µå 30% (23,800¿ø)
(ÃÖ´ëÇÒÀÎ 3¸¸¿ø / 3¸¸¿ø ÀÌ»ó °áÁ¦)
NH¼îÇÎ&ÀÎÅÍÆÄÅ©Ä«µå 20% (27,200¿ø)
(ÃÖ´ëÇÒÀÎ 4¸¸¿ø / 2¸¸¿ø ÀÌ»ó °áÁ¦)
Close

C++ PROGRAMMING

¼Òµæ°øÁ¦

2013³â 9¿ù 9ÀÏ ÀÌÈÄ ´©Àû¼öÄ¡ÀÔ´Ï´Ù.

°øÀ¯Çϱâ
Á¤°¡

34,000¿ø

  • 34,000¿ø

    1,020P (3%Àû¸³)

ÇÒÀÎÇýÅÃ
Àû¸³ÇýÅÃ
  • S-Point Àû¸³Àº ¸¶ÀÌÆäÀÌÁö¿¡¼­ Á÷Á¢ ±¸¸ÅÈ®Á¤ÇϽŠ°æ¿ì¸¸ Àû¸³ µË´Ï´Ù.
Ãß°¡ÇýÅÃ
¹è¼ÛÁ¤º¸
  • 4/26(±Ý) À̳» ¹ß¼Û ¿¹Á¤  (¼­¿ï½Ã °­³²±¸ »ï¼º·Î 512)
  • ¹«·á¹è¼Û
ÁÖ¹®¼ö·®
°¨¼Ò Áõ°¡
  • À̺¥Æ®/±âȹÀü

  • ¿¬°üµµ¼­

  • »óÇ°±Ç

AD

Ã¥¼Ò°³

¡ºC++ PROGRAMMING¡»Àº ÇÁ·Î±×·¡¹ÖÀÇ C++¿¡ ´ëÇØ ´Ù·é µµ¼­ÀÌ¸ç ¡´Introduction to C++¡µ, ¡´Input and Output Objects?¡µ, ¡´Basics of C++¡µ µîÀ» ¼ö·ÏÇÏ°í ÀÖ¾î ±âÃÊÀûÀÌ°í Àü¹ÝÀûÀÎ ³»¿ëÀ» È®ÀÎÇÏ½Ç ¼ö ÀÖ½À´Ï´Ù.

¸ñÂ÷

CHAPTER 01. Introduction to C++
1.1 Overview
1.2 C++ Programs
1.3 C++ Application Program Development
1.4 Starting C++ Programs
1.5 g++ Compilation

CHAPTER 02. Input and Output Objects?
2.1 Overview
2.2 Input and Output Objects of C++
2.3 cin.get(), cin.getline() and cin.ignore()
2.4 Precision of the Real Number Type

CHAPTER 03. Basics of C++
3.1 Overview
3.2 Reserved Words
3.3 Data Types
3.4 namespace
3.5 References
3.6 Calling C Codes in C++

CHAPTER 04. Operators
4.1 Overview
4.2 Operator
4.3 Types of Operator
4.4 Arithmetic Operators
4.5 Increment and Decrement Operators
4.6 Relation Operators, Logical Operators and Equivalence Operators
4.7 Bitwise Operators
4.8 Ternary Operators
4.9 Compound Assignment Operators
4.10 Other Operators

CHAPTER 05. Control Statements
5.1 Overview
5.2 if Control Statements
5.3 switch Control Statements
5.4 for, while and do-while Control Statements
5.5 goto Control Statements
5.6 break Control Statements
5.7 continue Control Statements

CHAPTER 06. Function
6.1 Overview
6.2 Definition of Function
6.3 Function Call
6.4 Returning a Value from a Function
6.5 Preprocessors
6.6 Division of Source Code
6.7 Storage Class
6.8 Variable Argument Functions
6.9 inline Functions
6.10 Recursive Functions
6.11 System Functions

CHAPTER 07. Arrays
7.1 Overview
7.2 One-Dimensional Arrays
7.3 Two-Dimensional Arrays
7.4 Three-Dimensional Arrays

CHAPTER 08. Introduction to Pointers
8.1 Overview
8.2 Pointers
8.3 Declaration and Use of Pointers
8.4 Operation of Pointers

CHAPTER 09. Arrays and Pointers
9.1 Overview
9.2 Arrays and Pointers
9.3 Pointer Arrays
9.4 Pointers for Arrays
9.5 Multiple Pointers
9.6 Access of Cell Arrays Using Pointers

CHAPTER 10. Process of Strings Using Pointers
10.1 Overview
10.2 Characters and Strings
10.3 Character Processing Functions
10.4 String Processing Functions

CHAPTER 11. Application of Pointers
11.1 Overview
11.2 Memory Allocation
11.3 NULL pointers and Type void pointers
11.4 Using const in Pointers

CHAPTER 12. Application of Functions
12.1 Overview
12.2 Delivering Arguments of Functions
12.3 Return of Function Value with Structure
12.4 Pointer to Function

CHAPTER 13. Classes
13.1 Overview
13.2 Defining a class
13.3 Access Specifiers of a class
13.4 class Member Functions
13.5 Object Construction and Member Function Call
13.6 friend Functions and friend Classes
13.7 Separation of Files

CHAPTER 14. Constructors and Destructors
14.1 Overview
14.2 Constructors
14.3 Destructors
14.4 Copy Constructors

CHAPTER 15. static and const in classes
15.1 Overview
15.2 Using static
15.3 Using static in Classes
15.4 Using const in Classes
15.5 explicit and mutable

CHAPTER 16. Inheritance
16.1 Overview
16.2 Base Classes and Derived Classes
16.3 Three Types of Class Inheritance
16.4 Conditions of Class Inheritance
16.5 Memory Alignment in Classes
16.6 Initializers
16.7 friend Functions when class is in Relationship of Inheritance

CHAPTER 17. Inheritance, virtual Function, and Polymorphism
17.1 Overview
17.2 Rules of Class Type Conversion
17.3 Binding of the Member Function
17.4 virtual Functions and Polymorphism
17.5 virtual Function Tables
17.6 Pure virtual Functions and Abstract Base Classes
17.7 virtual Destructors
17.8 Composition, Multiple Inheritance, and virtual Inheritance of Classes

CHAPTER 18. Casting in C++
18.1 Overview
18.2 RTTI (Run-Time Type Information)
18.3 Casting in C++
18.4 Casting of Classes

CHAPTER 19. Operator Overloading
19.1 Overview
19.2 *this
19.3 Operator Overloading
19.4 + Operator Overloading
19.5 ++, -- Operator Overloading
19.6 = Operator Overloading
19.7 [ ] Operator Overloading
19.8 ( ) Operator Overloading
19.9 Data Type Overloading
19.10 ¡´¡´, ¡µ¡µ Operator Overloading
19.11 new, delete Operator Overloading
19.12 *, -¡µ Operator Overloading
19.13 Smart Pointer

CHAPTER 20. string Class
20.1 Overview
20.2 String Processing
20.3 Processing Strings Using the string Class

CHAPTER 21. Input and Output of Files
21.1 Overview
21.2 C File System
21.3 C++ File System

CHAPTER 22. Exception Processing
22.1 Overview
22.2 C Style Exception Processing
22.3 C++ Style Exception Processing
22.4 Exception Processing Class

CHAPTER 23. Templates
23.1 Overview
23.2 Function Templates
23.3 Class Templates

CHAPTER 24. STL(Standard Template Library)
24.1 Overview
24.2 Sequence Container
24.3 Associative Containers
24.4 iterator
24.5 algorithm
24.6 Function Objects
24.7 Container Adapter
24.8 allocator

ÀúÀÚ¼Ò°³

À̽ÃÇö [Àú] ½ÅÀ۾˸² SMS½Åû
»ý³â¿ùÀÏ -

´ëÇ¥ÀÛÀ¸·Î ¡ºC++ PROGRAMMING¡»ÀÌ/°¡ ÀÖ´Ù.

Àü°øµµ¼­/´ëÇб³Àç ºÐ¾ß¿¡¼­ ¸¹Àº ȸ¿øÀÌ ±¸¸ÅÇÑ Ã¥

    ¸®ºä

    0.0 (ÃÑ 0°Ç)

    100ÀÚÆò

    ÀÛ¼º½Ã À¯ÀÇ»çÇ×

    ÆòÁ¡
    0/100ÀÚ
    µî·ÏÇϱâ

    100ÀÚÆò

    0.0
    (ÃÑ 0°Ç)

    ÆǸÅÀÚÁ¤º¸

    • ÀÎÅÍÆÄÅ©µµ¼­¿¡ µî·ÏµÈ ¿ÀǸ¶ÄÏ »óÇ°Àº ±× ³»¿ë°ú Ã¥ÀÓÀÌ ¸ðµÎ ÆǸÅÀÚ¿¡°Ô ÀÖÀ¸¸ç, ÀÎÅÍÆÄÅ©µµ¼­´Â ÇØ´ç »óÇ°°ú ³»¿ë¿¡ ´ëÇØ Ã¥ÀÓÁöÁö ¾Ê½À´Ï´Ù.

    »óÈ£

    (ÁÖ)±³º¸¹®°í

    ´ëÇ¥ÀÚ¸í

    ¾Èº´Çö

    »ç¾÷ÀÚµî·Ï¹øÈ£

    102-81-11670

    ¿¬¶ôó

    1544-1900

    ÀüÀÚ¿ìÆíÁÖ¼Ò

    callcenter@kyobobook.co.kr

    Åë½ÅÆǸž÷½Å°í¹øÈ£

    01-0653

    ¿µ¾÷¼ÒÀçÁö

    ¼­¿ïƯº°½Ã Á¾·Î±¸ Á¾·Î 1(Á¾·Î1°¡,±³º¸ºôµù)

    ±³È¯/ȯºÒ

    ¹ÝÇ°/±³È¯ ¹æ¹ý

    ¡®¸¶ÀÌÆäÀÌÁö > Ãë¼Ò/¹ÝÇ°/±³È¯/ȯºÒ¡¯ ¿¡¼­ ½Åû ¶Ç´Â 1:1 ¹®ÀÇ °Ô½ÃÆÇ ¹× °í°´¼¾ÅÍ(1577-2555)¿¡¼­ ½Åû °¡´É

    ¹ÝÇ°/±³È¯°¡´É ±â°£

    º¯½É ¹ÝÇ°ÀÇ °æ¿ì Ãâ°í¿Ï·á ÈÄ 6ÀÏ(¿µ¾÷ÀÏ ±âÁØ) À̳»±îÁö¸¸ °¡´É
    ´Ü, »óÇ°ÀÇ °áÇÔ ¹× °è¾à³»¿ë°ú ´Ù¸¦ °æ¿ì ¹®Á¦Á¡ ¹ß°ß ÈÄ 30ÀÏ À̳»

    ¹ÝÇ°/±³È¯ ºñ¿ë

    º¯½É ȤÀº ±¸¸ÅÂø¿À·Î ÀÎÇÑ ¹ÝÇ°/±³È¯Àº ¹Ý¼Û·á °í°´ ºÎ´ã
    »óÇ°À̳ª ¼­ºñ½º ÀÚüÀÇ ÇÏÀÚ·Î ÀÎÇÑ ±³È¯/¹ÝÇ°Àº ¹Ý¼Û·á ÆǸÅÀÚ ºÎ´ã

    ¹ÝÇ°/±³È¯ ºÒ°¡ »çÀ¯

    ·¼ÒºñÀÚÀÇ Ã¥ÀÓ ÀÖ´Â »çÀ¯·Î »óÇ° µîÀÌ ¼Õ½Ç ¶Ç´Â ÈÑ¼ÕµÈ °æ¿ì
    (´ÜÁö È®ÀÎÀ» À§ÇÑ Æ÷Àå ÈѼÕÀº Á¦¿Ü)

    ·¼ÒºñÀÚÀÇ »ç¿ë, Æ÷Àå °³ºÀ¿¡ ÀÇÇØ »óÇ° µîÀÇ °¡Ä¡°¡ ÇöÀúÈ÷ °¨¼ÒÇÑ °æ¿ì
    ¿¹) È­ÀåÇ°, ½ÄÇ°, °¡ÀüÁ¦Ç°(¾Ç¼¼¼­¸® Æ÷ÇÔ) µî

    ·º¹Á¦°¡ °¡´ÉÇÑ »óÇ° µîÀÇ Æ÷ÀåÀ» ÈѼÕÇÑ °æ¿ì
    ¿¹) À½¹Ý/DVD/ºñµð¿À, ¼ÒÇÁÆ®¿þ¾î, ¸¸È­Ã¥, ÀâÁö, ¿µ»ó È­º¸Áý

    ·½Ã°£ÀÇ °æ°ú¿¡ ÀÇÇØ ÀçÆǸŰ¡ °ï¶õÇÑ Á¤µµ·Î °¡Ä¡°¡ ÇöÀúÈ÷ °¨¼ÒÇÑ °æ¿ì

    ·ÀüÀÚ»ó°Å·¡ µî¿¡¼­ÀÇ ¼ÒºñÀÚº¸È£¿¡ °üÇÑ ¹ý·üÀÌ Á¤ÇÏ´Â ¼ÒºñÀÚ Ã»¾àöȸ Á¦ÇÑ ³»¿ë¿¡ ÇØ´çµÇ´Â °æ¿ì

    »óÇ° Ç°Àý

    °ø±Þ»ç(ÃâÆÇ»ç) Àç°í »çÁ¤¿¡ ÀÇÇØ Ç°Àý/Áö¿¬µÉ ¼ö ÀÖÀ½

    ¼ÒºñÀÚ ÇÇÇغ¸»ó
    ȯºÒÁö¿¬¿¡ µû¸¥ ¹è»ó

    ·»óÇ°ÀÇ ºÒ·®¿¡ ÀÇÇÑ ±³È¯, A/S, ȯºÒ, Ç°Áúº¸Áõ ¹× ÇÇÇغ¸»ó µî¿¡ °üÇÑ »çÇ×Àº ¼ÒºñÀÚºÐÀïÇØ°á ±âÁØ (°øÁ¤°Å·¡À§¿øȸ °í½Ã)¿¡ ÁØÇÏ¿© 󸮵Ê

    ·´ë±Ý ȯºÒ ¹× ȯºÒÁö¿¬¿¡ µû¸¥ ¹è»ó±Ý Áö±Þ Á¶°Ç, ÀýÂ÷ µîÀº ÀüÀÚ»ó°Å·¡ µî¿¡¼­ÀÇ ¼ÒºñÀÚ º¸È£¿¡ °üÇÑ ¹ý·ü¿¡ µû¶ó ó¸®ÇÔ

    (ÁÖ)KGÀ̴Ͻýº ±¸¸Å¾ÈÀü¼­ºñ½º¼­ºñ½º °¡ÀÔ»ç½Ç È®ÀÎ

    (ÁÖ)ÀÎÅÍÆÄÅ©Ä¿¸Ó½º´Â ȸ¿ø´ÔµéÀÇ ¾ÈÀü°Å·¡¸¦ À§ÇØ ±¸¸Å±Ý¾×, °áÁ¦¼ö´Ü¿¡ »ó°ü¾øÀÌ (ÁÖ)ÀÎÅÍÆÄÅ©Ä¿¸Ó½º¸¦ ÅëÇÑ ¸ðµç °Å·¡¿¡ ´ëÇÏ¿©
    (ÁÖ)KGÀ̴Ͻýº°¡ Á¦°øÇÏ´Â ±¸¸Å¾ÈÀü¼­ºñ½º¸¦ Àû¿ëÇÏ°í ÀÖ½À´Ï´Ù.

    ¹è¼Û¾È³»

    • ±³º¸¹®°í »óÇ°Àº Åùè·Î ¹è¼ÛµÇ¸ç, Ãâ°í¿Ï·á 1~2Àϳ» »óÇ°À» ¹Þ¾Æ º¸½Ç ¼ö ÀÖ½À´Ï´Ù.

    • Ãâ°í°¡´É ½Ã°£ÀÌ ¼­·Î ´Ù¸¥ »óÇ°À» ÇÔ²² ÁÖ¹®ÇÒ °æ¿ì Ãâ°í°¡´É ½Ã°£ÀÌ °¡Àå ±ä »óÇ°À» ±âÁØÀ¸·Î ¹è¼ÛµË´Ï´Ù.

    • ±ººÎ´ë, ±³µµ¼Ò µî ƯÁ¤±â°üÀº ¿ìü±¹ Åù踸 ¹è¼Û°¡´ÉÇÕ´Ï´Ù.

    • ¹è¼Ûºñ´Â ¾÷ü ¹è¼Ûºñ Á¤Ã¥¿¡ µû¸¨´Ï´Ù.

    • - µµ¼­ ±¸¸Å ½Ã 15,000¿ø ÀÌ»ó ¹«·á¹è¼Û, 15,000¿ø ¹Ì¸¸ 2,500¿ø - »óÇ°º° ¹è¼Ûºñ°¡ ÀÖ´Â °æ¿ì, »óÇ°º° ¹è¼Ûºñ Á¤Ã¥ Àû¿ë