기억저장소

기억저장소

728x90
반응형

분류 전체보기 268

[C++] GetLastError()

[출처] http://www.winapi.co.kr/ApiBoard/content.php?table=tblqa&pk=13489FormatMessage()라는 함수인데, GetLastError()로 얻은 에러 코드가무슨 에러인지 알고 싶으면???char buffer[128];FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM, NULL, GetLastError(),NULL, buffer, 128, NULL);MessageBox(hWnd, buffer, "Error", MB_ICONHAND); 에러코드와 대응 상수 ----------------------------------------NO_ERROR equ 0ERROR_SUCCESS equ 0ERROR_INVALID_FUNCTION e..

[backbone.js] 개념

백본 (Backbone) : 자신에게 연결되어 있는 소형 회선들로부터 데이터를 모아 빠르게 전송할 수 있는 대규모 전송회선.백본 홈페이지 : http://backbonejs.org/백본 예제 도움이 될만한 사이트 모음 백본 첫 개발자를 위한 내용http://armigar.blog.me/220066638455 백본 피피티 만들 때 도움 되는 것http://www.slideshare.net/gyutaejo/backbonejs-m-v 투토리얼 동영상 (추천, 처음일경우 꼭 보셈)https://www.youtube.com/watch?v=FZSjvWtUxYk 백본 시작하기,,http://linuxism.tistory.com/1488 프론트엔드 웹앱 프레임웍http://www.slideshare.net/iolo/s..

Web/backbone.js 2014.07.29

[계절학기 C++] Class

7.1 Abstract Data Types (추상적데이터타입) 7.2 Object-Oriented Programming (객체지향프로그래밍) 7.3 Introduction to Classesclass Square { private: int side; public: void setSide(int s) { side = s; } int getSide() { return side; } }; 7.4 Introduction to ObjectsSquare sq1, sq2; 7.5 Defining Member Functions 7.6 Constructors (생성자) 7.7 Destructors (소멸자) 7.8 Private Member Functions 7.9 Passing Objects to Functions p..

[강좌2] 3일차

시험은 오픈북?, ~~~ - CPP 파일에서 컴파일, 링크, exe 파일 만드는 과정을 알자.- 키워드, Write a program to calculate how much a student center earns during its fund raising lemonade sale. The Program should prompt the user to enter the number of lemonades sold and the amount the student center earns for each lemonade sold. It should then calculate and display the total amount earned. - using namespace std?? - \t \a \\ \' \'..

요약본.

1. -패킷스위칭 : 회선 점유 x, 네트워크 상황에 따라 다른경로 경유, 항상 목적지 주소정보가 포함 (패킷헤더)그래서 대역폭의 손실이 발생할 수 있음, 항상 목적지 주소를 가지고 있어야하니까이를 오버헤드라고 한다.그래서 괜찮은 프로토콜을 써야한다. -서클 스위칭 : 회선 점유, 동일한 경로를 사용하여 데이터 전송-큐잉딜레이, 패킷잃음-인터넷프로토콜스택/ 어플리케이션 (SMTP, HTTP, FTP)/ / 트랜스포트 (TCP, UDP)/ 호스트간 데이터 전송/ 네트워크 (IP, rouing protocol)/ (출발, 목적까지 데이타그램 라우팅 담당)/ 링크 (이더넷)/ (데이타 전송)/ 피지컬 (비트)/ -Encapsulation / Decapsulation 2 application layer- 구조 ..

Computer Networking 2014.06.12
728x90
반응형