一直不明白在調用setjmp(jmp_buf j) 和longjmp(jmp_buf j, int i)傳值是怎麼傳的,今天看了jmp_buf 的定義才明白數組
typedef struct _jmp_buf { int _jp[_JBLEN+1]; } jmp_buf[1];