XML Tutorial/XML Schema/long

Материал из Web эксперт
Версия от 08:26, 26 мая 2010; Admin (обсуждение | вклад) (1 версия)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

The long data type is derived from the integer type.

The value space is integer values from ?23372036854775808 up to and including 9223372036854775807. 
The lexical space is a finite-length sequence of decimal digits with an optional leading - or +.
<!-- schema -->
<xsd:element name="bignumbers">
<xsd:simpleType>
  <xsd:restriction base="xsd:long">
   <xsd:enumeration value="2177483647"/>
   <xsd:enumeration value="-2177483647"/>
  </xsd:restriction>
</xsd:simpleType>
</xsd:element>
<!-- instance document -->
<bignumbers>2177483647</bignumbers>