프로그래밍 언어
-
CMD 배치 스크립트프로그래밍 언어/스크립트 언어 2014. 3. 10. 15:51
command shellthe command interpreter Cmd.exethe Windows Script Host, CScript.exe a .bat or .cmd file name extension * 도스 프롬프트에서 실행 가능한 모든 명령어들c.f. conditional processing symbols - the Windows NT command interpreterIn a batch file, the @ symbol is the same as ECHO OFF applied to the current line only. C:> VER C:> HELP C:> HELP set - Filter commandsmorefindgrep?findstrgrepsort - redirection operat..
-
C#프로그래밍 언어/데이터 타입 2013. 8. 21. 18:15
모든 변수는 클래스 선언부에 있거나 아니면 메서드의 지역 변수로만 존재 CTS(Common Type System)닷넷 언어 * 값 타입변수를 선언하는 즉시 기억 장소가 할당변수끼리 대입시 별도의 사본- 내장형System.Char or charSystem.Int32 or int.MinValue.MaxValue- 사용자 정의형열거형 * 참조 타입.==()힙상의 번지를 비교. 문자열은 예외클래스System.Object or objectpublic virtual string ToString();System.String or string배열
-
리플렉션 or RTTI(Run Time Type Information)프로그래밍 언어/데이터 타입 2013. 7. 25. 04:04
* Javathe classic castIn C++, the classic cast "(TYPE)" does not perform RTTI.type-safe downcastjava.lang.ClassCastException instanceof java.lang.Object.getClass() // Class java.lang.Class(type?) // ClassInitialization is delayed until the first reference to a static method (the constructor is implicitly static) or to a non-constant static fieldc.f. Class.forName()If there’s a superclass, initia..
-
Objective-C프로그래밍 언어/규격 2013. 7. 4. 03:35
참조 사이트:http://www.otierney.net/objective-c.html.kohttp://www.gnustep.org/resources/ObjCFun.htmlhttp://www.gnustep.org/resources/documentation/Developer/Base/ProgrammingManual/manual.htmlhttp://www.gnustep.org/resources/documentation/Developer/Base/ProgrammingManual/manual_toc.html
-
어셈블리어 - MASM프로그래밍 언어/서브루틴 2013. 6. 4. 20:20
TITLE Calculating a Factorial (Fact.asm) .386.MODEL flat,stdcallINCLUDE SmallWin.inc.STACK 4096 .codemain PROCpush 12; calculate 12 factorialcall Factorial; calculate factorial (eax)INVOKE ExitProcess,0main ENDP Factorial PROCpush ebpmov ebp,espmov eax,[ebp+8]; get ncmp eax,0; n < 0?ja L1; yes: continuemov eax,1; no: return 1jmp L2 L1: dec eaxpush eax; Factorial(n-1)call Factorial mov ebx,[ebp+8..