일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 29 | 30 | 31 |
- Xcode
- DispatchGroup
- jQuery
- spring
- 개발기록
- 파이썬서버
- 딩동말씀
- iOS앱배포
- 스위프트
- 웹
- customclass
- 자바스크립트
- 계산기앱
- Xib
- 앱배포
- 맥
- iOS배포
- AJAX
- Python
- iOS계산기
- Swift
- 앱버전구하기
- subscript
- FLASK
- JavaScript
- FileOwner
- MainScheduler
- 계산기앱만들기
- ios
- 스프링
- Today
- Total
목록분류 전체보기 (86)
개발하는 뚝딱이
1.3 The Network Core circuit switching (telecommunication networks) dedicated circuit per call (자원[가상의 선로]를 점유하고 있으므로, 정보를 전달하지 않아도 돈을 지불해야함) The sender can transfer the data to the receiver at the guaranteed rate. 전용도로 - 가상의 선로로 쭉 보냄 packet- switching (Internet)-라우터 data is sent through networks in packets forward packets from one router to the next, across links on path from source to destinat..
생성자를 이용한 의존 객체 주입 public StudentRegisterService(StudentDao studentDao) { this.studentDao = studentDao; } public StudentModifyService(StudentDao studentDao) { this.studentDao = studentDao; } public StudentDeleteService(StudentDao studentDao) { this.studentDao = studentDao; } public StudentSelectService(StudentDao studentDao) { this.studentDao = studentDao; } public StudentAllSelectService(Student..
1.2 Network Edge Network structure network edge : hosts : clients and servers P2P [Peer to peer] : 한 peer가 client, server 모두 될 수 있음 servers often in data centers ; 하드웨어라고 생각하기 쉬우나, 그 자체보다는 서비스를 제공하는 부분을 의미 access networks, physical media wired, wireless communication links core network에서 edge들이 어떻게 연결되는가 network core : interconnected routers network of networks Access networks Q. How to connect ..
DI(Dependency Injection)란? ex) 장난감 배터리 일체형 → 배터리가 떨어지면 장난감을 새로 구입해야 한다 배터리 분리형 → 배터리가 떨어지면 배터리만 교체하면 된다 객체를 통해 많은 기능을 구현할 수 있으며, 객체 하나하나마다 프로그램에 엮여 있다. 배터리 분리형 → 배터리라는 객체에 의존함 [의존주입] (배터리를 주입함) ▶ 좀 더 유연성있고 단단한 프로그래밍 /* 배터리 일체형 */ public class ElectronicCarToy { private Battery battery; public ElectronicCarToy() { battery = new NormalBattery(); } } /* 배터리 분리형 */ public class ElectronicRobotToy { ..