一直不明白在调用setjmp(jmp_buf j) 和longjmp(jmp_buf j, int i)传值是怎么传的,今天看了jmp_buf 的定义才明白数组
typedef struct _jmp_buf { int _jp[_JBLEN+1]; } jmp_buf[1];