Parameter vs Argument
Tech 2009/01/21 22:44Parameter와 Argument의 차이가 뭐죠?
A parameter represents a value that the procedure expects you to supply when you call it. The procedure's declaration defines its parameters.
An argument represents the value you supply to a procedure parameter when you call the procedure. The calling code supplies the arguments when it calls the procedure. The part of the procedure call that specifies the arguments is called the argument list.
the words actual and formal can be used to distinguish between an argument and a parameter, respectively. For example, the equivalent terms actual argument and actual parameter may be used instead of argument; and formal argument and formal parameter may be used instead of parameter.
'Tech' 카테고리의 다른 글
| django 삽질 (3) | 2009/11/19 |
|---|---|
| CUDA Driver/Toolkit/SDK 설치하기 (Ubuntu 9.04 Jaunty) (2) | 2009/09/17 |
| Parameter vs Argument (1) | 2009/01/21 |
| GEB: MU puzzle (4) | 2008/10/20 |
| MySQL -> XML: CDATA Sanitize? (2) | 2008/09/26 |
| 하위 디렉토리에 있는 모든 .svn 을 날리는 법 (5) | 2008/09/11 |
Trackback Address :: http://www.deisys.net/trackback/254
- Tracked from deisys' me2DAY 2009/01/21 22:54 DELETE
Subject: deisys의 생각
Parameter vs Argument 다른거였구나 … 라지만 위키에도 구분하는건 쓸데없다라고(자의적 해석) - 쓰여있었는데 …

