Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to use Java Construction method super and Custom exception throw Collection

2025-03-30 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/01 Report--

This article mainly shows you the "Java construction method super and custom exception throw collection how to use", the content is easy to understand, clear, hope to help you solve your doubts, the following let the editor lead you to study and learn "Java construction method super and custom exception throw collection how to use" this article.

1. Construction method:

Public class name () {} distinguish / / public void method name () {}

Divided into parametric and non-parametric subclass construction methods

Public class Zi extends fu {public int message=35;public Zi () {System.out.println (who am I);}}

When you create an object: output: the contents of the subclass constructor:

2.super and this use: public void show (int message) {System.out.println (this.message); / / returns the member variable System.out.println (super.message) of this class; / / returns the member variable of the parent class}

3. The constructor uses:

Public Zi (int name) {System.out.println (name);} public fu (int name) {System.out.println (name);} Zi sw=new Zi

The subclass needs to add a super (name)

By creating a subclass object: returning the subclass parametric constructor, and returning the parent parameterized constructor

If you do not add, you can only return the parametric constructor of the subclass, and the parameterless constructor of the parent class

So:

Public Zi (int name) {super (name); / / add this System.out.println (name);}

4. Custom exception throw: (supplementary)

Public class Student {public void sctrr (int score) throws uytig {if (score100) {throw new uytig (); / / throw exception object} else {System.out.println ("method exception!") ;}} public class uytig extends Exception {public uytig () {super ();} public uytig (String message) {super (); / / public Exception (String message) {/ / super (message); / /} / / public Throwable (String message) {/ / fillInStackTrace (); / / detailMessage = message / /}} public class fu {public static void main (String [] args) throws uytig {Student sc=new Student (); try {sc.sctrr (98);} catch (uytig uytig) {uytig.printStackTrace ();}

Enter score=120

Printing: wrong location

Uytig

At Student.sctrr (Student.java:10)

At fu.main (fu.java:11)

The above is all the content of the article "how to use the Java constructor super and custom exception throw collection". Thank you for reading! I believe we all have a certain understanding, hope to share the content to help you, if you want to learn more knowledge, welcome to follow the industry information channel!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report