분류 전체보기
-
JavaCC컴파일러/스캐너 2013. 7. 16. 18:47
단어(토큰)종료 기호(terminal symbol) 정규 표현 * 토큰을 생성하지 않는 단어SKIP directiveSPECIAL_TOKEN directive 공백문자행 주석 * 특수 문자e.g. "==" * 일반 단어TOKEN directive 예약어식별자숫자 리터럴 * 구조를 포함한 단어MORE directive 블록 주석문자열 리터럴문자 리터럴SPECIAL_TOKEN : { } SPECIAL_TOKEN : { } MORE : { : IN_BLOCK_COMMENT } MORE : { } SPECIAL_TOKEN : { : DEFAULT } TOKEN : {| | | | | | | | | | | | | | | | | | | | | | | | | | | } TOKEN : {..
-
JavaCC컴파일러 2013. 7. 16. 02:03
options {STATIC = false;} PARSER_BEGIN(Adder) import java.io.*; class Adder {static public long evaluate(String src) throws ParseException {Reader reader = new StringReader(src);return new Adder(reader).expr();} static public void main(String[] args) {for (String arg : args) {try {System.out.println(evaluate(arg));} catch(ParseException ex) {System.err.println(ex.getMessage());}}} } PARSER_END(A..
-
Side-by-side Assemblies(WinSxS)SysAdmin/규격 2013. 7. 10. 01:05
It was Microsoft's answer to DLL Hell that was introduced with Windows XPVisual C++ 2005 is the first version of Visual C++ that uses side-by-side assemblies for the C/C++ runtime libraries. where a DLL is stored for global accessInstead of using C:\Windows\System32, they are stored in the side-by-side directory, C:\Windows\winsxs(%SystemRoot%\WinSxS).The search order for DLL's has changed with ..
-
wxWidgetsGUI/설정 2013. 7. 8. 16:09
* 비쥬얼 스튜디오 2005 - Windows 71. 여기에서 wxMSW(wxMSW-2.8.12-Setup.exe)를 다운받아 실행해서 소스 코드를 설치한다.2. 비쥬얼 스튜디오에서 c:\wxWidgets-2.8.12\build\msw\wx.dsw를 열어서 프로젝트를 변환한다.3. 프로젝트 빌드(Debug)4. c:\wxWidgets-2.8.12\samples\samples.dsw를 열어서 마찬가지 방법으로 build 참조 사이트:c:\wxWidgets-2.8.12\docs\msw\install.txthttp://wanochoi.com/?p=244http://yiunsr.tistory.com/638http://dstein.egloos.com/viewer/2864277http://andmemories-te..
-
-