XSD-숫자 데이터 유형
숫자 데이터 유형은 XML 문서에서 숫자를 나타내는 데 사용됩니다.
<xs : decimal> 데이터 유형
<xs : decimal> 데이터 유형은 숫자 값을 나타내는 데 사용됩니다. 최대 18 자리의 십진수를 지원합니다.
<xs : decimal> 예
XSD의 요소 선언-
<xs:element name = "score" type = "xs:decimal"/>
XML의 요소 사용-
<score>9.12</score>
<xs : integer> 데이터 유형
<xs : integer> 데이터 유형은 정수 값을 나타내는 데 사용됩니다.
<xs : integer> 예
XSD의 요소 선언-
<xs:element name = "score" type = "xs:integer"/>
XML의 요소 사용-
<score>9</score>
숫자 데이터 유형
다음은 일반적으로 사용되는 숫자 데이터 유형 목록입니다.
S. 아니. | 이름 및 설명 |
---|---|
1. | byte 부호있는 8 비트 정수 |
2. | decimal 10 진수 값 |
삼. | int 부호있는 32 비트 정수 |
4. | integer 정수 값 |
5. | long 부호있는 64 비트 정수 |
6. | negativeInteger 음수 값만있는 정수 (..,-2, -1) |
7. | nonNegativeInteger 음이 아닌 값만있는 정수 (0,1,2, ..) |
8. | nonPositiveInteger 양수가 아닌 값만있는 정수 (..,-2, -1,0) |
9. | positiveInteger 양수 값만있는 정수 (1,2, ..) |
10. | short 부호있는 16 비트 정수 |
11. | unsignedLong 부호없는 64 비트 정수 |
12. | unsignedInt 부호없는 32 비트 정수 |
13. | unsignedShort 부호없는 16 비트 정수 |
14. | unsignedByte 부호없는 8 비트 정수 |
제한
다음과 같은 제한 유형은 날짜 데이터 유형과 함께 사용할 수 있습니다-
- enumeration
- fractionDigits
- maxExclusive
- maxInclusive
- minExclusive
- minInclusive
- pattern
- totalDigits
- whiteSpace