목록전체보기 (483)
음악, 삶, 개발
생략.
stream 과 buffer 이다. 다른 블로그들 의 설명들을 먼저 읽고 오도록 한다. 스트림과 버퍼 C++ 의 입출력 stream 이란 ? stream 이란? stream 에 대한 이해 스트림(Stream) 이란? Stream 버퍼(위키피디아) [개념정리] 버퍼(Buffer)란? (Term)버퍼(Buffer)란? 10.1 Input and output 10.2 The I/O stream model 10.3 Files 10.4 Opening a file 10.5 Reading and writing a file 10.6 I/O error handling 10.7 Reading a single value (생략) 10...
class와 enum에 대해 배우고, Date type을 통해 유용한 class 디자인 기술을 배운다. 9.1 User-definded types (사용자 정의 type) 9.2 Classes and members 9.3 Interface and implementation 9.4 Evolving a class 9.4.1 struct and functions 9.4.2 Member functions and constructors 9.4.3 Keep details private 9.4.4 Defining member functions 9.4.5 Referring to the current object 9.4.6 Reporting errors 9.5 Enumerations 9.5.1 Plain e..
오늘 식당에 밥 먹으러 갔다가 나오는 음악이 너무 좋아서 검색해보니 Hubert Tas 뮤지션이었다. 이걸 보면 세상이 정말 좋아졌다..핸드폰으로 누구 음악인지 검색할수있고 Youtube 에서 바로 들어볼수있고... 보컬이 없는 Instrument 위주의 음악이었다. 프로듀서의 입장에서 Instrument 음악 또한 무척 좋아한다. 가사보다 비트와 분위기에 집중하는 기분이 좋다. 뮤직비디오를 여러 편 보았는데, 참신한 부분이 많이 있었고, 언더그라운드의 실험적인 요소들을 음악에서 잘 느낄 수 있었다. 이런 좋은 음악을 우연히 만나면, 음악을 만들고 싶은 욕구가 용솟음친다.. 인스타그램을 살펴보니, 기본적으로 DJ인데, 여러 연주자들을 세션으로 사용하여, 음악을 완성한듯하다. 이 방식은 편집 과정에서 많은..
8.1 Technicalities 8.2 Declarations and definitions 8.2.1 Kinds of declarations 8.2.2 Variable and constant declarations 8.2.3 Default initialization 8.3 Header files 8.4 Scope 8.5 Function call and return 8.5.1 Declaring arguments and return type 8.5.2 Returning a value 8.5.3 Pass-by-value 8.5.4 Pass-by-const-reference 8.5.5 Pass-by-reference 8.5.6 Pass-by-value vs Pass-by-reference 8.5.7..
생략.
생략.
I realized that from now on a large part of my life would be spent finding correcting my own mistakes. - Maurice Wilkes, 1949 우리는 이 챕터에서, 프로그램의 정확성, 에러, 에러를 다루는법에 대해 이야기할것이다. 5.1 Introduction 5.2 Sources of errors (에러의 근원) 5.3 Compile-time errors 5.3.1 Syntax errors 5.3.2 Type errors 5.3.3 Non-errors 5.4 Link-time errors 5.5 Run-time errors 5.5.1 The caller deals with errors 5.5.2 The cal..
이 챕터에서는 expression, selection, iteration, function, vector 를 배운다. 본격적으로, 프로그램안에서 연산을 하고, 함수를 만드는것에 관한 이야기. 프로그래밍에 대한 정신자세등도 담겨있으니 넘기지말고 읽을것. 4.1 Computation 4.2 Objectives and tools 4.3 Expressions 4.3.1 Constant expressions 4.3.2 Operators 4.3.3 Conversions 4.4 Statements 4.4.1 Selection 4.4.1.1 if-statements 4.4.1.2 switch-statements 4.4.1.3 switch technicalities 4.4.2 Iteration 4.4.2.1..
3.1 Input "Hello, World!" 프로그램은 사용자로부터 input을 받지 않고 output 만을 출력한다. 실제 프로그램들은 사용자의 input에 근거하여 결과를 produce 한다. 사용자 입력을 받는 간단한 코드. #include void main() { // "본인의 성을 입력하세요! : " 를 콘솔창에 출력. std::cout firstName; // firstName 를 콘솔창에 출력. std::cout > yourAge; std::cout int mought narrow int a { 1000 }; char b { a }; // error : int ->char might narrow char b1 { 1000 }; // error : narrowing (assumi..