Home > Java > javaTutorial > body text

Returning objects

PHPz
Release: 2024-08-28 06:32:03
Original
979 people have browsed it
  • A method can return any data type, including class types.

  • An example is the ErrorMsg class, which can be used to report errors.

  • The getErrorMsg() method of the ErrorMsg class returns a String object.

  • This String object contains the description of an error based on the error code received.

  • Example:
    Retornando objetos

  • You can return objects from classes you create yourself.

  • Example: reworked version of the previous program with two error classes.

  • The Err class encapsulates an error message along with a severity code.

  • The ErrorInfo class defines a method called getErrorInfo().

  • The getErrorInfo() method returns an object of class Err.

Retornando objetos

Retornando objetos

  • Every time getErrorInfo() is called, a new Err object is created and returned.

  • The Err object reference is used in main() to display the error message and severity code.

  • An object returned by a method continues to exist until it is no longer referenced.

  • When there are no more references to the object, it is the target of garbage collection.

  • The object is not destroyed just because the method that created it is terminated.

The above is the detailed content of Returning objects. For more information, please follow other related articles on the PHP Chinese website!

source:dev.to
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!