这对stackOverflow最简单的问题,但我是一个完整的初学者;遗憾。
任何人都可以告诉我如何声明自定义类型。
在VB中,我会这样做:
Private Type CustomPoint
Dx as Single
Dy as Single
Dz as Single
Vector as Single
End Type
我如何在Eclipse上做同样的事情?我需要为此创建一个新类吗?
非常感谢您的帮助!
答案 0 :(得分:2)
如果您问的是Java
类定义的样子,请考虑以下内容:
public class CustomPoint {
// Object fields
float dX;
float dY;
float dZ;
float vector;
public CustomPoint() {}
//// CustomPoint methods
}
答案 1 :(得分:0)
Visual Basic类型可以看作C的结构,在java中(因为是OOP)你可以创建一个类来做同样的事情,如下所示:
class CustomPoint{
float Dx;
float Dy;
float Dz;
float vector;
public CustomPoint(float x, float y, float z, float v){
Dx = x;
Dy = y;
Dz = z;
vector = v;
}
}