1. const char *str == char const *str
  2. char *const str

const与的位置关系:const在号的左边表示可以修改指针的指向但是不能修改指针指向的值; const在*号的右边表示可以直接修改指针指向的值但不能修改指针的指向。