根据文章,以下哪项不是处理批评的成熟方式?

答案解析

**核心考点:**成熟地处理批评 **解题思路:**文章指出,学习如何接受批评是人生中最重要的技能之一,它可以提高自尊和自重。 **选项分析:** - A. 接受批评并从中学习:这是处理批评的成熟方式。 - B. 否认批评并指责他人:这不是处理批评的成熟方式。 - C. 愤怒地回应批评:这不是处理批评的成熟方式。 - D. 忽视批评:这不是处理批评的成熟方式。 **易错点提醒:**不要将成熟的处理方式与不成熟的处理方式混淆。
正确答案:B
随机推荐

在如下Java代码片段中,`Bank`类定义了`deposit`和`withdraw`方法,其中`withdraw`方法可能会抛出自定义异常`BankException`。在`operate`方法中,如果先执行两次`deposit`操作,再执行两次`withdraw`操作,若初始账户余额为0,且两次`withdraw`操作分别尝试取款500和1000,则程序运行的结果会是什么? ```java class BankException extends Exception { public BankException(String message) { super(message); } } class Bank { private double balance; public Bank(double initialBalance) { this.balance = initialBalance; } public double getBalance() { return balance; } public void setBalance(double balance) { this.balance = balance; } public void deposit(double amount) { this.setBalance(this.getBalance() + amount); System.out.println("存款金额:"+amount+",现有余额:"+this.getBalance()); } public double withdraw(double amount) throws BankException { if (amount <= this.getBalance()) { this.setBalance(this.getBalance() - amount); System.out.println("取款金额:" + amount + ",现有余额:" + this.getBalance()); } else { BankException be = new BankException("余额不足,操作失败!"); throw be; } return this.getBalance(); } } public class Main { public static void main(String[] args) { try { operate(); } catch (BankException e) { System.err.println(e.getMessage()); } } public static void operate() throws BankException { Bank bank = new Bank(0); bank.deposit(300); bank.deposit(500); bank.withdraw(500); bank.withdraw(1000); System.out.println("任务完成!"); } } ```

开始刷题