The difference between a Java constructor and a go constructor

Source: Internet
Author: User
This is a creation in Article, where the information may have evolved or changed.

Because Java constructors do not require a return value, it is generally a constructor that has more arguments than the constructor that calls the parameter, and then continues to assign the value.

Like what:

Public Student (String name) {this.name = name; This.age = 10;}    Public Student (String name, int.) {this (name); This.age = age;}

While the go language requires a return value, it is often a constructor that has fewer parameters, and a default value is passed in when called.

So the code might be like this:

Func newstudentwithage (name string, age int) *student{return &student{name:name,age:age};    }func newstudent (name string) *student{return Newstudentwithage (name, 10); }

The same is true of object-c. If you use C + +, you also write some static functions such as newstudent to call the constructor, it is the same as go.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.