摘要:
#include <stdio.h> int main(void){ int * p;//p是个变量名字,int * 表示该p变量只能存储int类型的地址 int i = 10; int j; //j=*p; //printf("%d\n",j); //输出垃圾值 p的内容未指定 //char ch 阅读全文
摘要:
public class Application { static void test(int a) throws MyException{ System.out.println("传递的参数为:"+a); if (a>10){ throw new MyException(a);//抛出 } Sys 阅读全文