像C ++一样在Java中创建结构

时间:2015-03-01 19:39:11

标签: java struct

我想在java中创建一个结构,比如c ++:

struct MyStruct {
    int x;
};
#include <iostream>
int main() {
    MyStruct Struct;
    Struct.x = 0;
    std::cout << Struct.x;
    return 0;
}

任何人都可以帮助我吗?

3 个答案:

答案 0 :(得分:1)

您可以使用类,其功能与C ++中的struct类似。

例如,C ++ point结构可能看起来像

typedef struct __point {
   int x, y;
} point;

Java point类的格式为

final class Point { 
    private final double x;    // x-coordinate
    private final double y;    // y-coordinate

    // point initialized from parameters
    public Point(double x, double y) {
        this.x = x;
        this.y = y;
    }

    // accessor methods
    public double x() { return x; }
    public double y() { return y; }

    // return a string representation of this point
    public String toString() {
        return "(" + x + ", " + y + ")";
    } 

}

我们可以拨打以下电话:

Point q = new Point(0.5, 0.5);
System.out.println("q  = " + q);
System.out.println("x = " + q.x());

答案 1 :(得分:1)

public class ircodes {
    public ircodes(String msg_id, String node_id, String frequency, String data) {
        this.hdr = new msg_hdr(4 + data.length(), Integer.parseInt(msg_id), Integer.parseInt(node_id));
        this.frequency = Integer.parseInt(frequency);
        this.data = data;
    }

    public class msg_hdr {
        int msg_len;
        int msg_id;
        int node_id;

        public msg_hdr(int msg_len, int msg_id, int node_id) {
            this.msg_len = 12 + msg_len;
            this.msg_id = msg_id;
            this.node_id = node_id;
        }
    }
    msg_hdr hdr;
    int frequency;
    String data;

    public ByteBuffer serialize() {
        ByteBuffer buf = ByteBuffer.allocate(hdr.msg_len);
        buf.putInt(hdr.msg_len);
        buf.putInt(hdr.msg_id);
        buf.putInt(hdr.node_id);
        buf.putInt(frequency);
        buf.put(data.getBytes());
        return buf;
    }
}

答案 2 :(得分:0)

Java没有struct像C或C ++,但您可以使用Java类并将其视为struct。最重要的是,您当然可以将其所有成员声明为公开成员。 (与struct完全相同)

class MyClass
{
    public int num;
}

MyClass m = new MyClass();
m.num = 5;
System.out.println(n.num);

structclass之间的区别之一是结构没有方法。如果您创建一个没有方法的类,它将像struct一样工作。

但是,您总是可以输入方法(getter和setter)并将变量设置为私有(就像它一样)(

class MyClass
{
    private int num;
    public void setNum(int num){
        this.num = num
    }
    public int getNum(){
        return num
    }
}

MyClass m = new MyClass();
m.setNum(5);
System.out.println(n.getNum());

Java没有struct,但是一个类可以完成与struct完全相同的事情。