问答详情
源自:1-9 经验总结

求教大神,作业参考里getMessage()是什么意思啊?

catch (Exception bne) {

//捕获”图书不存在异常“时,要求重新输入命令

System.out.println(bne.getMessage());

continue;


提问者:ghcg 2017-07-11 20:58

个回答

  • 雨落之殇99
    2017-07-11 21:08:21
    已采纳

    getMessage():获取异常的详细描述信息;

    toString():获取异常的简短信息.

  • 慕无忌6964436
    2018-01-19 21:49:45

    toString() 方法可把一个逻辑值转换为字符串,并返回结果。

  • qq_为妳战天下_0
    2017-07-21 20:40:44

    #include<iostream>
    using namespace std;
    int main()
    {
        int a;
        cout<<"input a number"<<endl;
        cin>>a;
        cout<<"number="<<a<<endl;
       }


  • ggyiyiuhhou
    2017-07-11 21:06:27

    不知道耶