⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 xinteger.java

📁 A framework written in Java for implementing high-level and dynamic languages, compiling them into J
💻 JAVA
字号:
// Copyright (c) 2006  Per M.A. Bothner.// This is free software;  for specifics see ../../../COPYING.package gnu.kawa.xml;import gnu.math.IntNum;/** An integer that is an instance of a more specific integer type. * I.e. it has a type annotation and restrictions, in the XML Schema sense. */public class XInteger extends IntNum{  // Alternatively have a different subclass for each type.  private XIntegerType type;  public XIntegerType getIntegerType ()  {    return type;  }  XInteger (IntNum value, XIntegerType type)  {    words = value.words;    ival = value.ival;    this.type = type;  }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -