预定义的一般实体
XML 预定义了五个可以在不声明的情况下使用的通用实体:
& " ' < >
它们与名称 amp,quot,apos,lt 和 gt 相关联。
<?xml version="1.0"?>
<entities>
  & is an ampersand.
  " is a quote.
  ' is an apostrophe.
  < is a lower-than sign.
  > is a greater-than sign. 
</entities>