gpt4 book ai didi

java - c++ 可以做这个 java 构建器模式吗?

转载 作者:太空宇宙 更新时间:2023-11-03 10:31:28 25 4
gpt4 key购买 nike

<分区>

在 java 中,构建器的 setter 方法可以返回构建器本身,以便可以链接调用,如下所示:

public class builder{

private String name;
private int age;
private char glyph;

public builder setName(String name){
this.name = name;
return this;
}

public builder setAge(int age){
this.age = age;
return this;
}

public builder setGlyph(char glyph){
this.glyph = glyph;
return this;
}

public static void main(String[] args){
builder b = new builder().setName("").setAge(10).setGlyph('%');
}
}

这在 C++ 中可能吗?

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com