Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我对下面的 ex 是构造函数还是方法感到有些困惑。我知道构造函数与类同名,但它不返回任何内容。
public class Point3D { public Point3D transform(Matrix m){
它是一种返回同一类实例的方法Point3D。接受参数后的方法似乎在转换后返回同一类的实例。
Point3D
请参阅:为您的类提供构造函数
构造函数声明看起来像方法声明——除了它们使用类的名称并且没有返回类型。