public static int fib()
{return 1;}
public int fibb()
 { try
  {
   return fib();
  }
   catch
  {
   throw;
  }
 }

public static int fib()
{return 1;}
public int fibb()
 { try
  {
   return fib();
  }
   catch(Exception  e)
  {
   throw e;
  }
}
区别