fun() { int i; //函数局部变量 { int i; //复合语句局部变量 int j; //这里使用的i是复合语句内定义的i } //这里使用的i是函数是函数局部变量i //这里使用j是错的 }