option-pricing model______
查看答案
financial management______
Which of the following belongs to current liability?()
A. accounts payable
B. common stock
C. inventories
D. notes payable
public class TestException { public void CreateException() throws Exception{throw new Exception("new exception"); } public static void main(String[] args) { TestException te = new TestException(); try{ System.out.println("try called start"); te.CreateException(); System.out.println("try called end"); } catch(Exception ex){ System.out.println("catch called"); System.out.println( ex.getMessage()); } finally{ System.out.println("finally called"); } System.out.print("main() finished"); }}程序的输出结果是:______