일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- https://minkwon4.tistory.com/161
- https://tecoble.techcourse.co.kr/post/2021-08-07-logback-tutorial/
- 국회의원 & 높으신 분들 어록
- Today
- Total
OPEN between Secret
javascript 캡슐화 하는 방법(클로저 이용) 본문
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<!-- Always force latest IE rendering engine (even in intranet) & Chrome Frame
Remove this if you use the .htaccess -->
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>day07_capsulaition</title>
<meta name="description" content="">
<meta name="author" content="01-717-08">
<meta name="viewport" content="width=device-width; initial-scale=1.0">
<!-- Replace favicon.ico & apple-touch-icon.png in the root of your domain and delete these references -->
<link rel="shortcut icon" href="/favicon.ico">
<link rel="apple-touch-icon" href="/apple-touch-icon.png">
<script type = "text/javascript">
<!--
function Rectangle(width, height){
/*
this.width=width;
this.height=height;
이렇게 하면 캡슐화가 안된다. 그래서*/
var w = width; //지역변수 : 외부접근불가
var h = height;
this.getArea= function(){ //inner function
var result =w*h;
alert('Area:' + result);
};
}
//-->
var robj = new Rectangle(4,5); // 여기를 실행하고 나면 var들로 정의되어 있기에
// 메모리에서 사라지게 되지만
robj.getArea(); // 이부분에서 getArea() 에서 값이 불러와 진다. 말이 안되는데
// 이게 클로저라는게 되있기 떄문에 가능함
</script>
</head>
<body>
</body>
</html>
'java > Java script & jQuery' 카테고리의 다른 글
15.01.07(5장) (0) | 2015.01.07 |
---|---|
prototype (0) | 2014.07.31 |
140730 (0) | 2014.07.30 |
리터럴 종류 (0) | 2014.07.29 |
java script (0) | 2014.07.28 |