일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
- 일본대학원
- QA
- 스마트시티
- 4차산업
- move앱
- 다음메일
- 사양
- 부자아빠가난한아빠
- 韓国
- 명령어
- 200-301
- 코로나바이러스
- 한국판뉴딜
- 성능측정
- 환경정보
- 동시접속
- JMeter
- 5G
- ads.txt
- 사용자100명
- 사양정보
- gbd-200
- 일본유학
- 정보처리기사
- 스펙정보
- 리눅스
- DevNet
- certification
- ios
- 韓国ヒップホップ
- Today
- Total
목록분류 전체보기 (159)
IT 컴퓨터공학 자료실
A domain model in problem solving and software engineering is a conceptual model of all the topics related to a specific problem. It describes the various entities, their attributes, roles, and relationships, plus the constraints that govern the problem domain. It does not describe solutions to the problem. 도메인 모델이란 구체적인 문제와 관련있는 모든 주제에 대한 개념적인 모델을 의미한다. 이것은 다양한 entity들, 그것들의 속성들, 역할, 관계 등을 서술하며..
Domain-driven design (DDD) is an approach to software development for complex needs by connecting the implementation to an evolving model. The premise of domain-driven design is the following: Domain-driven design은 발전하는 모델의 구현물에 연결함으로서 복잡성 요구를 위한 소프트웨어 개발에 대한 접근법이다. Domain-driven design을 간략히 설명하면 다음과 같다: ∙ Placing the project's primary focus on the core domain and domain logic.∙ Basing complex d..
In computer science, a value object is a small object that represents a simple entity whose equality is not based on identity 컴퓨터 공학에서 value object는 identity를 가지지 않은 entity 같은 작은 오브젝트를 말한다. Being small, one can have multiple copies of the same value object that represent the same entity: it is often simpler to create a new object rather than rely on a single instance and use references to it. 작은..
In computer software, a data access object (DAO) is an object that provides an abstract interface to some type of database or other persistence mechanism. By mapping application calls to the persistence layer, DAO provide some specific data operations without exposing details of the database. This isolation supports the Single responsibility principle. It separates what data accesses the applica..
Component-based software engineering (CBSE) (also known as component-based development (CBD)) is a branch of software engineering that emphasizes the separation of concerns in respect of the wide-ranging functionality available throughout a given software system. It is a reuse-based approach to defining, implementing and composing loosely coupled independent components into systems. This practic..
In Aspect-oriented software development, cross-cutting concerns are aspects of a program that affect other concerns. These concerns often cannot be cleanly decomposed from the rest of the system in both the design and implementation, and can result in either scattering (code duplication), tangling (significant dependencies between systems), or both. Aspect-oriented 개발 방식에서, cross-cutting concern..
Interface-based programming is a concept that has a close relationship with Modular programming and Object-Oriented Programming. Interface-based programming은 모듈러 프로그래밍과 객체지향프로그래밍과 유사한 개념이다. Modular Programming defines the application as a collection of intercoupled modules. This increases the modularity of the application and hence its maintainability. The total system complexity is greatly redu..
구 분가 격특 징Flash Media ServerStandard : US$995Professional : US$4,500[특징]- 모바일 서버로 적합- ActionScript로 서버사이트 스크립트 작성- flv 비디오 스트리밍을 할 수 있다.- flash object를 접속자간 shared 할 수 있다.[가격정책]- Starter : 테스트용 무료 버전으로 Adobe Media Server 의 모든 기능을 테스트 해볼수 있음.단, 동시 접속 인원이 10명으로 제한됨- Standard : 유료 버젼으로 가장 일반 적인 기능을 사용할 수 있음.- Professtional : 유료 버젼으로 Standard 보다 좀더 많은 기능을 사용할 수 있음.- Extends : 유료 버젼으로 Adobe Media Serv..
포인터 토대가 된 책 스택과 자동 변수malloc (3)는 메모리를 확보하고, malloc (3)을 설명 할 때 언급했다. 그러나 하나의 프로세스가 사용하는 메모리에는 여러 종류가있다. 표준 UNIX에서는 가상 메모리와 함께 다음 레이아웃 메모리가 사용된다.00000000 여유 메모리 (NULL 포인터에 의한 참조를 검출한다) 00001000 코드 세그먼트 (CS)의 시작 00001FFF 코드 세그먼트 (CS)의 종료 00002000 데이터 세그먼트 (DS)의 시작 0000FFFF 데이터 세그먼트 (DS)의 종료 00010000 공간의 시작 FFFFC000 스택 탑 FFFFFFFF 스택의 바닥 여기서 중요한 것은 "스택"이다. 데이터에는 두 가지의 구별이있다. 비유로 말하는 것이 좋겠다.예를 들어 기업의..
포인터 토대가 된 책 함수 포인터 사용포인터로 가리킬 수있는 것은 일반 데이터뿐만 아니다. 프로그램의 단편 인 함수조차도 포인터로 포인터 변수에 저장할 수있다. 예를 들어, 조건에 따라 덧셈을 할 것인가 뺄셈을 할 것인지 변화라는 프로그램이 있다고하자.int add (int a, int b) { return a + b; } int sub (int a, int b) { return a - b; } void main () { int cond; int x, y; ....... if (cond == 0) { printf ( "result = % d \ n", add (x, y)); } else if (cond == 1) { printf ( "result = % d \ n", sub (x, y)); } else ..