2011. 11. 5. 23:24
건강은 제쳐두고 너무나 목표지향형으로 살았나보다ㅠ
건강에 적신호가 켜졌다ㅜㅜ
되돌아 보면... 너무 신경을 쓰지않고 살아왔던것 같다
'아무리 열심히 살아도 죽지않는다'라는 말을 너무 맹신했던 것 같다
모든 것은 잃고나서 절실해진다고 나 역시 지금상황에서 건강이 너무 절실한것 같다
지금 환경에서 개선하기 위해서는
첫째 따뜻한 물을 많이 마신다
둘째 헬스와 같이 정기적운동을 시작한다
셋째 아침점심저녁 규칙적으로 식사를 한다
넷째 과식을 피한다 과식은 몸에 냉기를 가져다 준다
다섯째 식물성 식사를 한다
여섯째 부정적생각을 줄인다 스트레스를 경감한다

'Windows Prog' 카테고리의 다른 글

-  (0) 2011.12.24
[펌] 프린터 관련 함수  (0) 2011.11.10
[Ruby] editor 다운로드  (0) 2011.10.29
[Ruby] Ruby의 특징  (0) 2011.10.29
Hungarian notation(헝가리안 표기법)_By.Wikipedia  (0) 2011.03.08
Posted by Triany
2011. 10. 29. 14:02


루비 프로그래밍에 앞서, 루비 컴파일러를 다운받아 보겠습니다^^

http://www.ruby-lang.org/ko/
루비 사이트에서 다운로드 받으면 됩니다.




[다운로드] - 스크롤을 내리시면 운영체제 별로 다운로드 받으면 됩니다^^
저는 Window를 쓰기에 윈도우 Ruby 1.8.6 원클릭 인스톨러 안정화 버전을 다운로드 받아습니다.^^




이제 설치를 시작합니다.
왠만한 것은 그냥 Next - Next 해 주세요^^

완료되었으면 finish를 눌러줍니다.





이제 중요한^^ 환경변수 잡아주기 - 차례입니다.^^
아마 기본으로 설치하였으면 C디렉토리 바로 아래에 설치되었을 겁니다^^
C:\Ruby\bin
이것을 속성 - 환경변수 - 시스템변수 - Path에 추가해 줍니다.


이제 루비 컴파일 환경이 완성되었습니다^^


이제 에디드 플러스 상에서 컴파일 환경을 잡아볼까요^^

 


에디드 플러스를 설치합니다^^ 에디트플러스 v3.0 editplus, text 
에디터 플러스를 실행합니다.
1. [도구] - [사용자 도구 구성]



이후는 아래 과정을 따라 오시면 됩니다^^

먼저 아래 파일을 설치하고 압축을 풀어주세요

 














ctrl + 1을 누르면 컴파일 실행완료^^

'Windows Prog' 카테고리의 다른 글

-  (0) 2011.12.24
[펌] 프린터 관련 함수  (0) 2011.11.10
그동안 건강에 너무도 소홀했다  (0) 2011.11.05
[Ruby] Ruby의 특징  (0) 2011.10.29
Hungarian notation(헝가리안 표기법)_By.Wikipedia  (0) 2011.03.08
Posted by Triany
2011. 10. 29. 13:23

1. 객체지향 언어
  Ruby는 객체지향 언어다.
Ruby내에서는 모든 것이 객체다. 숫자, 문자열, 정규표현, 입출력, 데이터베이스 접속, 그리고 클래스 자체도 객체다. 메소드나 코드 블록을 객체로 다룰 수 있으며, 특히 계속(Continuation) 객체라는 것도 있다.
 Ruby에는 '객체가 아닌 자료형'은 존재하지 않는다.
 객체란?
  - Identity를 갖는다.
    객체는 자신이 무엇인지를 알고 자신과 자신이 아닌 것을 구별한다. Ruby에서는 object_id 메소드로 객체의 일련번호를 얻을 수 있다.
 ex)
   str1 = "string"
   str1.object_id  #=> 84640: 문자열 객체

'Windows Prog' 카테고리의 다른 글

-  (0) 2011.12.24
[펌] 프린터 관련 함수  (0) 2011.11.10
그동안 건강에 너무도 소홀했다  (0) 2011.11.05
[Ruby] editor 다운로드  (0) 2011.10.29
Hungarian notation(헝가리안 표기법)_By.Wikipedia  (0) 2011.03.08
Posted by Triany
2011. 3. 8. 13:31

Hungarian notation

From Wikipedia, the free encyclopedia
Jump to: navigation, search

Hungarian notation is an identifier naming convention in computer programming, in which the name of a variable or function indicates its type or intended use. There are two types of Hungarian notation: Systems Hungarian notation and Apps Hungarian notation.

Hungarian notation was designed to be language-independent, and found its first major use with the BCPL programming language. Because BCPL has no data types other than the machine word, nothing in the language itself helps a programmer remember variables' types. Hungarian notation aims to remedy this by providing the programmer with explicit knowledge of each variable's data type.

In Hungarian notation, a variable name starts with a group of lower-case letters which are mnemonics for the type or purpose of that variable, followed by whatever name the programmer has chosen; this last part is sometimes distinguished as the given name. The first character of the given name can be capitalised to separate it from the type indicators (see also CamelCase). Otherwise the case of this character denotes scope.

Contents

[hide]

[edit] History

The original Hungarian notation, which would now be called Apps Hungarian, was invented by Charles Simonyi, a programmer who worked at Xerox PARC circa 1972-1981, and who later became Chief Architect at Microsoft. It may have been derived from the earlier principle of using the first letter of a variable name to set its type — for example, variables whose names started with letters I through N in FORTRAN were integers by default.

The notation is a reference to Simonyi's nation of origin; Hungarian people's names are "reversed" compared to most other European names; the family name precedes the given name. For example, the anglicized name "Charles Simonyi" in Hungarian was originally "Simonyi Charles". In the same way the type name precedes the "given name" in Hungarian notation rather than the more natural, to most Europeans, Smalltalk "type last" naming style e.g. aPoint and lastPoint. This latter naming style was most common at Xerox PARC during Simonyi's tenure there. It may also be inspired by play on the name of an almost entirely unrelated concept, Polish notation.

The name Apps Hungarian was coined since the convention was used in the applications division of Microsoft. Systems Hungarian developed later in the Microsoft Windows development team. Simonyi's paper referred to prefixes used to indicate the "type" of information being stored. His proposal was largely concerned with decorating identifier names based upon the semantic information of what they store (in other words, the variable's purpose), consistent with Apps Hungarian. However, his suggestions were not entirely distinct from what became known as Systems Hungarian, as some of his suggested prefixes contain little or no semantic information (see below for examples).

The term Hungarian notation is memorable for many people because the strings of unpronounceable consonants vaguely resemble the consonant-rich orthography of some Eastern European languages despite the fact that Hungarian is a Finno-Ugric language, and unlike Slavic languages is rather rich in vowels. For example the zero-terminated string prefix "sz" is also a letter in the Hungarian alphabet.

[edit] Systems vs. Apps Hungarian

Where Systems notation and Apps notation differ is in the purpose of the prefixes.

In Systems Hungarian notation, the prefix encodes the actual data type of the variable. For example:

  • lAccountNum : variable is a long integer ("l");
  • arru8NumberList : variable is an array of unsigned 8-bit integers ("arru8");
  • szName : variable is a zero-terminated string ("sz"); this was one of Simonyi's original suggested prefixes.
  • bReadLine(bPort,&arru8NumberList) : function with a byte-value return code.

Apps Hungarian notation strives to encode the logical data type rather than the physical data type; in this way, it gives a hint as to what the variable's purpose is, or what it represents.

  • rwPosition : variable represents a row ("rw");
  • usName : variable represents an unsafe string ("us"), which needs to be "sanitized" before it is used (e.g. see code injection and cross-site scripting for examples of attacks that can be caused by using raw user input)
  • strName : Variable represents a string ("str") containing the name, but does not specify how that string is implemented.

Most, but not all, of the prefixes Simonyi suggested are semantic in nature. The following are examples from the original paper: [1]

  • pX is a pointer to another type X; this contains very little semantic information.
  • d is a prefix meaning difference between two values; for instance, dY might represent a distance along the Y-axis of a graph, while a variable just called y might be an absolute position. This is entirely semantic in nature.
  • sz is a null- or zero-terminated string. In C, this contains some semantic information because it's not clear whether a variable of type char* is a pointer to a single character, an array of characters or a zero-terminated string.
  • w marks a variable that is a word. This contains essentially no semantic information at all, and would probably be considered Systems Hungarian.
  • b marks a byte, which in contrast to w might have semantic information, because in C the only byte-sized data type is the char, so these are sometimes used to hold numeric values. This prefix might clear ambiguity between whether the variable is holding a value that should be treated as a letter (or more generally a character) or a number.

While the notation always uses initial lower-case letters as mnemonics, it does not prescribe the mnemonics themselves. There are several widely used conventions (see examples below), but any set of letters can be used, as long as they are consistent within a given body of code.

It is possible for code using Apps Hungarian notation to sometimes contain Systems Hungarian when describing variables that are defined solely in terms of their type.

[edit] Relation to sigils

In some programming languages, a similar notation now called sigils is built into the language and enforced by the compiler. For example, in BASIC, name$ names a string and count% names an integer, and in Perl, $name refers to a scalar variable while @namelist refers to an array. Sigils have the notable advantages over Hungarian notation that they implicitly define the type of the variable without need for redundant declaration, and are also checked by the compiler, preventing omission and misuse.

On the other hand, such systems are in practice less flexible than Hungarian notation, typically defining only a few different types — the lack of adequate easy-to-remember symbols obstructs more extensive use.

[edit] Examples

  • bBusy : boolean
  • chInitial : char
  • cApples : count of items
  • dwLightYears : double word (systems)
  • fBusy : boolean (flag)
  • nSize : integer (systems) or count (application)
  • iSize : integer (systems) or index (application)
  • fpPrice: floating-point
  • dbPi : double (systems)
  • pFoo : pointer
  • rgStudents : array, or range
  • szLastName : zero-terminated string
  • u32Identifier : unsigned 32-bit integer (systems)
  • stTime : clock time structure
  • fnFunction : function name

The mnemonics for pointers and arrays, which are not actual data types, are usually followed by the type of the data element itself:

  • pszOwner : pointer to zero-terminated string
  • rgfpBalances : array of floating-point values
  • aulColors : array of unsigned long (systems)

While Hungarian notation can be applied to any programming language and environment, it was widely adopted by Microsoft for use with the C language, in particular for Microsoft Windows, and its use remains largely confined to that area. In particular, use of Hungarian notation was widely evangelized by Charles Petzold's "Programming Windows", the original (and for many readers, the definitive) book on Windows API programming. Thus, many commonly-seen constructs of Hungarian notation are specific to Windows:

  • For programmers who learned Windows programming in C, probably the most memorable examples are the wParam (word-size parameter) and lParam (long-integer parameter) for the WindowProc() function.
  • hwndFoo : handle to a window
  • lpszBar : long pointer to a zero-terminated string

The naming convention guidelines for .NET Framework, Microsoft's more recent software development platform, advise that Hungarian notation should not be used.[2]

The notation is sometimes extended in C++ to include the scope of a variable, separated by an underscore. This extension is often also used without the Hungarian type-specification:

  • g_nWheels : member of a global namespace, integer
  • m_nWheels : member of a structure/class, integer
  • m_wheels : member of a structure/class
  • s_wheels : static member of a class
  • _wheels : local variable

[edit] Advantages

(Some of these apply to Systems Hungarian only.)

Supporters argue that the benefits of Hungarian Notation include:[1]

  • The variable type can be seen from its name
  • The type of value returned by a function is determined without lookup (i.e. searching for function definitions in other files, e.g. ".h" header files, etc.)
  • The formatting of variable names may simplify some aspects of code refactoring
  • Multiple variables with similar semantics can be used in a block of code: dwWidth, iWidth, fWidth, dWidth
  • Variable names can be easy to remember from knowing just their types.
  • It leads to more consistent variable names
  • Deciding on a variable name can be a mechanical, and thus quick, process
  • Inappropriate type casting and operations using incompatible types can be detected easily while reading code
  • Useful with string-based languages where numerics are strings (Tcl for example)
  • In Apps Hungarian, the variable name guards against using it in an improper operation with the same data type by making the error obvious as in:
heightWindow = window.getWidth()
  • When programming in a language that uses dynamic typing or that is completely untyped, the decorations that refer to types cease to be redundant. Such languages typically do not include declarations of types (or make them optional), so the only sources of what types are allowed are the names themselves, documentation such as comments, and by reading the code to understand what it does. In these languages, including an indication of the type of a variable may aid the programmer. As mentioned above, Hungarian Notation expanded in such a language (BCPL).
  • In complex programs with lots of global objects (VB/Delphi Forms), having a basic prefix notation can ease the work of finding the component inside of the editor. Typing btn and pressing <Ctrl-Space> causes the editor to pop up a list of Button objects.
  • Applying Hungarian notation in a narrower way, such as applying only for member variables helps avoiding naming collision.

[edit] Disadvantages

Most arguments against Hungarian notation are against System Hungarian notation, not Apps Hungarian notation. Some potential issues are:

  • The Hungarian notation is redundant when type-checking is done by the compiler. Compilers for languages providing type-checking ensure the usage of a variable is consistent with its type automatically; checks by eye are redundant and subject to human error.
  • All modern Integrated development environments display variable types on demand, and automatically flag operations which use incompatible types, making the notation largely obsolete.
  • Hungarian Notation becomes confusing when it is used to represent several properties, as in a_crszkvc30LastNameCol: a constant reference argument, holding the contents of a database column LastName of type varchar(30) which is part of the table's primary key.
  • It may lead to inconsistency when code is modified or ported. If a variable's type is changed, either the decoration on the name of the variable will be inconsistent with the new type, or the variable's name must be changed. A particularly well known example is the standard WPARAM type, and the accompanying wParam formal parameter in many Windows system function declarations. The 'w' stands for 'word', where 'word' is the native word size of the platform's hardware architecture. It was originally a 16 bit type on 16-bit word architectures, but was changed to a 32-bit on 32-bit word architectures, or 64-bit type on 64-bit word architectures in later versions of the operating system while retaining its original name (its true underlying type is UINT_PTR, that is, an unsigned integer large enough to hold a pointer). The semantic impedance, and hence programmer confusion and inconsistency from platform-to-platform, is on the assumption that 'w' stands for 16-bit in those different environments.
  • Most of the time, knowing the use of a variable implies knowing its type. Furthermore, if the usage of a variable is not known, it can't be deduced from its type.
  • Hungarian notation strongly reduces the benefits of using feature-rich code editors that support completion on variable names, for the programmer has to input the whole type specifier first.
  • It may make code less readable, by making variables look more similar to each other.[citation needed]
  • The additional type information can insufficiently replace more descriptive names. E.g. sDatabase doesn't tell the reader what it is. databaseName might be a more descriptive name.
  • When names are sufficiently descriptive, the additional type information can be redundant. E.g. firstName is most likely a string. So naming it sFirstName only adds clutter to the code.

[edit] Notable opinions

  • Linus Torvalds (against systems Hungarian):

    "Encoding the type of a function into the name (so-called Hungarian notation) is brain damaged—the compiler knows the types anyway and can check those, and it only confuses the programmer."[3]

  • Steve McConnell (for Hungarian):

    "Although the Hungarian naming convention is no longer in widespread use, the basic idea of standardizing on terse, precise abbreviations continues to have value. ... Standardized prefixes allow you to check types accurately when you're using abstract data types that your compiler can't necessarily check."[4]

  • Bjarne Stroustrup (against systems Hungarian for C++):

    "No I don't recommend 'Hungarian'. I regard 'Hungarian' (embedding an abbreviated version of a type in a variable name) a technique that can be useful in untyped languages, but is completely unsuitable for a language that supports generic programming and object-oriented programming—both of which emphasize selection of operations based on the type an arguments (known to the language or to the run-time support). In this case, 'building the type of an object into names' simply complicates and minimizes abstraction."[5]

  • Joel Spolsky (for apps Hungarian):

    "If you read Simonyi’s paper closely, what he was getting at was the same kind of naming convention as I used in my example above where we decided that us meant “unsafe string” and s meant “safe string.” They’re both of type string. The compiler won’t help you if you assign one to the other and Intellisense won’t tell you bupkis. But they are semantically different; they need to be interpreted differently and treated differently and some kind of conversion function will need to be called if you assign one to the other or you will have a runtime bug. If you’re lucky. (...) There’s still a tremendous amount of value to Apps Hungarian, in that it increases collocation in code, which makes the code easier to read, write, debug, and maintain, and, most importantly, it makes wrong code look wrong."[6]

  • Microsoft has discouraged the use of Hungarian notation in the .NET design guidelines,[2] which was common on earlier Microsoft development platforms like Visual Basic 6 and earlier.

[edit] References

[edit] External links

'Windows Prog' 카테고리의 다른 글

-  (0) 2011.12.24
[펌] 프린터 관련 함수  (0) 2011.11.10
그동안 건강에 너무도 소홀했다  (0) 2011.11.05
[Ruby] editor 다운로드  (0) 2011.10.29
[Ruby] Ruby의 특징  (0) 2011.10.29
Posted by Triany