亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? stringtable.java

?? 《深入java虛擬機》一書的光盤
?? JAVA
字號:
/** Copyright (c) 1996-1999 Bill Venners. All Rights Reserved.** This Java source file is part of the Interactive Illustrations Web* Site, which is delivered in the applets directory of the CD-ROM* that accompanies the book "Inside the Java 2 Virtual Machine" by Bill* Venners, published by McGraw-Hill, 1999, ISBN: 0-07-135093-4. This* source file is provided for evaluation purposes only, but you can* redistribute it under certain conditions, described in the full* copyright notice below.** Full Copyright Notice:** All the web pages and Java applets delivered in the applets* directory of the CD-ROM, consisting of ".html," ".gif," ".class,"* and ".java" files, are copyrighted (c) 1996-1999 by Bill* Venners, and all rights are reserved.  This material may be copied* and placed on any commercial or non-commercial web server on any* network (including the internet) provided that the following* guidelines are followed:** a. All the web pages and Java Applets (".html," ".gif," ".class,"* and ".java" files), including the source code, that are delivered* in the applets directory of the CD-ROM that* accompanies the book must be published together on the same web* site.** b. All the web pages and Java Applets (".html," ".gif," ".class,"* and ".java" files) must be published "as is" and may not be altered* in any way.** c. All use and access to this web site must be free, and no fees* can be charged to view these materials, unless express written* permission is obtained from Bill Venners.** d. The web pages and Java Applets may not be distributed on any* media, other than a web server on a network, and may not accompany* any book or publication.** BILL VENNERS MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE* SUITABILITY OF THE SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING* BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY,* FITNESS FOR PARTICULAR PURPOSE, OR NON-INFRINGEMENT.  BILL VENNERS* SHALL NOT BE LIABLE FOR ANY DAMAGES SUFFERED BY A LICENSEE AS A* RESULT OF USING, MODIFYING OR DISTRIBUTING THIS SOFTWARE OR ITS* DERIVATIVES.*/package COM.artima.jvmsim;/*** This class stores the user interface strings used by the* simulation applets.** @author  Bill Venners*/class StringTable {    public final static String step = "Step";    public final static String reset = "Reset";    public final static String run = "Run";    public final static String stop = "Stop";    public final static String operand = "operand";    public final static String execEnv = "exec env";    public final static String localVars = "local vars";    public final static String pcPointer = "pc >";    public final static String varsPointer = "vars >";    public final static String framePointer = "frame >";    public final static String optopPointer = "optop >";    public final static String address = "address";    public final static String offset = "offset";    public final static String index = "index";    public final static String bytecodes = "bytecode";    public final static String mnemonics = "mnemonic";    public final static String theMethod = "The Method";    public final static String operandStack = "Operand Stack";    public final static String localVariables = "Local Variables";    public final static String hexValue = "hex value";    public final static String value = "value";    public final static String Registers = "Registers";    public final static String pc = "pc ";    public final static String optop = "optop ";    public final static String frame = "frame";    public final static String vars = "vars";    public final static String objectReference = "object";    public final static String returnAddress = "retAddr";    public final static String objectRefHexRepresentation = "OBJ REF";    public final static String aaloadText = "aaload will pop an index and array reference and push the object ref at that index of the array.";    public final static String aload_0Text = "aload_0 will push the object ref at local variable 0 onto the stack.";    public final static String aload_1Text = "aload_1 will push the object ref at local variable 1 onto the stack.";    public final static String aload_2Text = "aload_2 will push the object ref at local variable 2 onto the stack.";    public final static String aload_3Text = "aload_3 will push the object ref at local variable 3 onto the stack.";    public final static String astoreText = "astore will pop object ref off top of stack and store it in local var specified by operand.";    public final static String astore_0Text = "astore_0 will pop the object ref off the top of the stack and store it in local variable 0.";    public final static String astore_1Text = "astore_1 will pop the object ref off the top of the stack and store it in local variable 1.";    public final static String astore_2Text = "astore_2 will pop the object ref off the top of the stack and store it in local variable 2.";    public final static String astore_3Text = "astore_3 will pop the object ref off the top of the stack and store it in local variable 3.";    public final static String athrowText = "athrow will pop the object ref off the top of the stack, and look for a catch clause.";    public final static String bipushText = "bipush will expand the next byte to an int and push it onto the stack.";    public final static String breakpointText = "breakpoint will stop the simulation.";    public final static String dcmpgText = "dcmpg will pop two doubles, compare them, push int result of comparison.";    public final static String dconst_0Text = "dconst_0 will push double 0.0 onto the stack.";    public final static String dconst_1Text = "dconst_1 will push double 1.0 onto the stack.";    public final static String dloadText = "dload will push onto the stack the double at the local variables specified by the operand.";    public final static String dload_0Text = "dload_0 will push the double at local variables 0 and 1 onto the stack.";    public final static String dload_2Text = "dload_2 will push the double at local variables 2 and 3 onto the stack.";    public final static String ddivText = "ddiv will pop two doubles, divide them, and push the double result.";    public final static String dmulText = "dmul will pop two doubles, multiply them, and push the double result.";    public final static String dstoreText = "dstore will pop the double off the top of the stack and store it in local variable indicated by operand.";    public final static String dstore_0Text = "dstore_0 will pop the double off the top of the stack and store it in local variables 0 and 1.";    public final static String dstore_2Text = "dstore_2 will pop the double off the top of the stack and store it in local variables 2 and 3.";    public final static String dsubText = "dsub will pop two doubles, subtract them, and push the double result.";    public final static String fconst_0Text = "fconst_0 will push float 0.0 onto the stack.";    public final static String fconst_2Text = "fconst_2 will push float 2.0 onto the stack.";    public final static String fload_0Text = "fload_0 will push the float at local variable 0 onto the stack.";    public final static String fmulText = "fmul will pop two floats, multiply them, and push the result.";    public final static String fstore_0Text = "fstore_0 will pop the float off the top of the stack and store it in local variable 0.";    public final static String fsubText = "fsub will pop two floats, subtract them, and push the result.";    public final static String getstaticText = "getstatic will push a static variable identified by a constant pool item.";    public final static String gotoText = "goto will cause a jump to the specified offset.";    public final static String iaddText = "iadd will pop the top two ints off the stack, add them, and push the result back onto the stack.";    public final static String iandText = "iand will pop the top two ints off the stack, bitwise-and them, and push the result back onto the stack.";    public final static String iastoreText = "iastore will pop an int value, an index, and an arrayref and assign arrayref[index] = value.";    public final static String iconst_m1Text = "iconst_m1 will push int -1 onto the stack.";    public final static String iconst_0Text = "iconst_0 will push int 0 onto the stack.";    public final static String iconst_1Text = "iconst_1 will push int 1 onto the stack.";    public final static String iconst_2Text = "iconst_2 will push int 2 onto the stack.";    public final static String iconst_3Text = "iconst_3 will push int 3 onto the stack.";    public final static String iconst_4Text = "iconst_4 will push int 4 onto the stack.";    public final static String iconst_5Text = "iconst_5 will push int 5 onto the stack.";    public final static String idivText = "idiv will pop the top two ints off the stack, divide them, and push the result back onto the stack.";    public final static String if_icmpgtText = "if_icmpgt will branch if the next to topmost int is greater than the topmost int.";    public final static String if_icmpltText = "if_icmplt will branch if the next to topmost int is less than the topmost int.";    public final static String if_icmpneText = "if_icmpne will branch if the top two ints are not equal to each other.";    public final static String ifeqText = "ifeq will branch if the topmost int is equal to zero.";    public final static String ifltText = "iflt will branch if the topmost int is less than zero.";    public final static String ifneText = "ifne will branch if the topmost int is not equal to zero.";    public final static String iincText = "iinc will increment the specified local variable by the specified amount.";    public final static String iload_0Text = "iload_0 will push the integer at local variable 0 onto the stack.";    public final static String iload_1Text = "iload_1 will push the integer at local variable 1 onto the stack.";    public final static String iload_2Text = "iload_2 will push the integer at local variable 2 onto the stack.";    public final static String iload_3Text = "iload_3 will push the integer at local variable 3 onto the stack.";    public final static String imulText = "imul will pop two integers, multiply them, and push the result.";    public final static String i2bText = "i2b will convert the topmost int on the stack to a value valid for the byte type.";    public final static String invokestaticText = "invokestatic will invoke the static method indicated by the specified constant pool entry.";    public final static String iorText = "ior will pop the top two ints off the stack, bitwise-or them, and push the result back onto the stack.";    public final static String iremText = "irem will pop two integers, remainder them, and push the result.";    public final static String ishlText = "ishl will shift the next to topmost int to the left by amount indicated by topmost int.";    public final static String istore_0Text = "istore_0 will pop the integer off the top of the stack and store it in local variable 0.";    public final static String istore_1Text = "istore_1 will pop the integer off the top of the stack and store it in local variable 1.";    public final static String istore_2Text = "istore_2 will pop the integer off the top of the stack and store it in local variable 2.";    public final static String istore_3Text = "istore_3 will pop the integer off the top of the stack and store it in local variable 3.";    public final static String istoreText = "istore will pop the int off the top of the stack and store it in local variable indicated by operand.";    public final static String ixorText = "ixor will pop the top two ints off the stack, biwise-xor them, and push the result back onto the stack.";    public final static String jsrText = "jsr push a return address and jump to the specified offset.";    public final static String laddText = "ladd will pop the top two longs off the stack, add them, and push the result back onto the stack.";    public final static String lconst_1Text = "lconst_1 will push long 1 onto the stack.";    public final static String ldc2_wText = "ldc2_w will push the dual-byte value from constant pool entry specifed by the operand.";    public final static String lloadText = "lload will push onto the stack the long at the local variables specified by the operand.";    public final static String lload_0Text = "lload_0 will push the long at local variables 0 and 1 onto the stack.";    public final static String lload_2Text = "lload_2 will push the long at local variables 2 and 3 onto the stack.";    public final static String lstoreText = "lstore will pop the long off the top of the stack and store it in local variable indicated by operand.";    public final static String lstore_0Text = "lstore_0 will pop the long off the top of the stack and store it in local variables 0 and 1.";    public final static String lstore_2Text = "lstore_2 will pop the long off the top of the stack and store it in local variables 2 and 3.";    public final static String multianewarrayText = "multianewarray will allocate memory for a new multi-dim array and push reference.";    public final static String popText = "pop will pop a word off the top of the stack.";    public final static String retText = "ret will jump to a return address in local var specified by operand .";    public final static String tableswitchText = "tableswitch will pop key and jump to a branch offset based on key.";}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
成人国产亚洲欧美成人综合网| 成人高清免费观看| 亚洲一区二区三区视频在线播放| 中文字幕+乱码+中文字幕一区| 精品成人a区在线观看| 日韩欧美一区二区视频| 欧美xxxxx牲另类人与| 日韩欧美视频在线| 精品福利二区三区| 国产欧美综合在线观看第十页| 国产日韩欧美精品电影三级在线| 欧美国产精品一区二区三区| 1000精品久久久久久久久| 中文字幕一区二区三| 亚洲国产裸拍裸体视频在线观看乱了 | 免费精品99久久国产综合精品| 日韩成人伦理电影在线观看| 九九精品一区二区| 成人污视频在线观看| 91免费在线视频观看| 欧美日韩电影在线| ww亚洲ww在线观看国产| 国产精品午夜在线| 亚洲电影第三页| 国产一区二区久久| 91啪亚洲精品| 精品国产一区a| 亚洲激情综合网| 免费人成在线不卡| av在线一区二区三区| 欧美日韩在线播放三区四区| 精品国产sm最大网站| 亚洲精品自拍动漫在线| 另类小说图片综合网| 91在线丨porny丨国产| 91精品国产综合久久久蜜臀图片| 久久精品亚洲精品国产欧美kt∨| 亚洲黄网站在线观看| 国产自产视频一区二区三区| 欧美影院一区二区| 久久精品一区二区| 午夜精品福利一区二区三区蜜桃| 国内一区二区在线| 欧美影视一区二区三区| 国产人成亚洲第一网站在线播放| 午夜精品免费在线| 91色porny蝌蚪| 精品国产制服丝袜高跟| 亚洲国产精品影院| 99综合影院在线| 久久综合五月天婷婷伊人| 亚洲18色成人| 色噜噜狠狠色综合欧洲selulu| 久久久久国产精品厨房| 日韩二区三区在线观看| 欧美性猛片aaaaaaa做受| 国产精品国产馆在线真实露脸| 精品一区二区在线免费观看| 在线成人av网站| 亚洲综合在线观看视频| 国产东北露脸精品视频| 精品国精品国产尤物美女| 天堂精品中文字幕在线| 欧美性视频一区二区三区| 国产精品国产三级国产aⅴ无密码| 国内精品写真在线观看| 日韩一区二区在线看片| 蜜臀av性久久久久蜜臀aⅴ流畅| 日韩毛片视频在线看| 91久久精品一区二区三区| 日韩欧美国产精品一区| 亚洲成人在线免费| 91福利视频网站| 亚洲另类色综合网站| 色婷婷av一区二区三区软件| 中文字幕一区二区三区乱码在线 | 亚洲精品免费在线| 成人国产精品免费网站| 中文字幕av一区二区三区免费看| 国产自产视频一区二区三区| 久久嫩草精品久久久精品| 精品中文字幕一区二区| 精品sm在线观看| 中文字幕在线一区免费| 成人综合日日夜夜| 国产精品久久久久久久久免费樱桃| 成人一区在线观看| 自拍偷拍国产精品| 色偷偷久久人人79超碰人人澡| 一区二区三区在线观看视频| 欧美色爱综合网| 日韩av电影免费观看高清完整版 | 亚洲欧美日韩电影| 色av成人天堂桃色av| 日本三级亚洲精品| 国产欧美va欧美不卡在线| 成人av手机在线观看| 亚洲成av人片| 欧美成人精品高清在线播放| 成人h动漫精品一区二| 亚洲免费高清视频在线| 91精品免费在线| 成人v精品蜜桃久久一区| 亚洲妇熟xx妇色黄| 欧美白人最猛性xxxxx69交| 成人h动漫精品一区二区| 亚洲网友自拍偷拍| 久久夜色精品一区| 色欧美乱欧美15图片| 狠狠v欧美v日韩v亚洲ⅴ| 国产精品狼人久久影院观看方式| 欧美日韩免费观看一区二区三区 | 亚洲福利国产精品| 久久精品视频免费| 精品视频123区在线观看| 国产伦理精品不卡| 三级久久三级久久| 中文字幕亚洲精品在线观看| 日韩欧美国产wwwww| 欧美亚洲动漫精品| 成人激情小说网站| 免费观看在线色综合| 亚洲精品免费在线| 国产欧美精品一区| 日韩精品一区二区三区在线观看 | 欧美大片日本大片免费观看| 91一区二区在线观看| 国产一区欧美一区| 天天免费综合色| 日韩美女久久久| 久久久国际精品| 欧美成人精品福利| 91精品国产高清一区二区三区蜜臀| 99视频一区二区三区| 国产成人精品三级| 极品少妇一区二区三区精品视频| 亚洲一区二区av在线| 亚洲欧美色图小说| 国产精品黄色在线观看| 久久久久国产精品麻豆ai换脸| 欧美一卡2卡3卡4卡| 欧美久久久久免费| 欧美日韩精品一区二区天天拍小说| 91猫先生在线| 91国在线观看| 欧美性色aⅴ视频一区日韩精品| 99精品桃花视频在线观看| av午夜一区麻豆| 99久久99久久免费精品蜜臀| 成人综合激情网| 成人免费精品视频| 99精品久久99久久久久| 91无套直看片红桃| 91美女在线观看| 欧美视频三区在线播放| 欧美片在线播放| 欧美无乱码久久久免费午夜一区| 在线影院国内精品| 欧美狂野另类xxxxoooo| av网站免费线看精品| 不卡的看片网站| 91丨九色丨蝌蚪富婆spa| 99视频一区二区三区| 91老师片黄在线观看| 亚洲va在线va天堂| 亚洲午夜精品一区二区三区他趣| 伊人色综合久久天天人手人婷| 一个色妞综合视频在线观看| 亚洲尤物在线视频观看| 日本不卡一二三| 国产精品影音先锋| 成人国产精品免费观看| 在线观看日韩毛片| 日韩精品一区二区三区四区| 欧美日本不卡视频| 欧美电影一区二区三区| 精品国产乱码久久久久久免费 | 久久国产免费看| 国产精品夜夜爽| 欧美在线免费视屏| 日韩视频一区二区三区在线播放 | 国产精品丝袜久久久久久app| 日韩毛片精品高清免费| 日本亚洲天堂网| 成人在线综合网| 欧美写真视频网站| 久久这里只有精品首页| 亚洲欧美日韩小说| 免费成人在线视频观看| 91色.com| 精品国产免费一区二区三区香蕉| 国产精品五月天| 日韩中文字幕亚洲一区二区va在线 | 丁香亚洲综合激情啪啪综合| 在线观看日产精品| 国产三级欧美三级日产三级99| 亚洲国产一区二区在线播放| 成人午夜电影网站| 精品国产百合女同互慰| 亚洲h在线观看|