블로그 이미지
.
속눈썹맨

공지사항

최근에 올라온 글

최근에 달린 댓글

최근에 받은 트랙백

글 보관함

calendar

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
전산학에서 말하는 Protection이 안되는 경우
1. 모두가 공용 계정을 이용할 때
2. 구분되지 않는 서버명 (단순히 1~n번까지로 되어 있을 때)
3. permission, quota가 없을 때
4. global variable로 범벅일 때.
5. 적절히 안내하지 않고 암묵적인(implicit)한 가정을 했을 때.
6. development와 release 코드, 서버를 분리하지 않았을 때
7. 모든 프로그램이 같은 memory space를 쓸 때
8. 스파게티 코드일 때


해결책
1. account
2. permission, quota
3. MVC 모델
4. namespace
5. local variable
6. 주석
7. cvs release tag
8. dist process
9. virtual memory
10. modular programming
11. Object oriented programming
12. automated test
13. locking