指针常量 和 常量指针
void test()
{
  int x=1;
  int y=1;
  int *const px=&x;//指针常量  内容可变 值不可变
  const  int *py;  //常量指针   内容不可变 值可变
  //px=&y;
  py=&x;
}