一经定义不能被修改

    1. /* static 静态 */
    2. /* const 常量
    3. const a:number = 10;
    4. a=20
    5. */
    6. /* 在类中定义一个常量 */
    7. class Http{
    8. public static readonly baseUrl="http://www.douban.com";
    9. public static str:string = "lisi"
    10. }
    11. Http.str = "lss";