gpt4 book ai didi

java - Ruby 中的简单数据结构等同于 Java

转载 作者:数据小太阳 更新时间:2023-10-29 07:42:53 25 4
gpt4 key购买 nike

在 Java 中,如果我想要一个简单的数据结构,我只需在类似这样的类中声明它

class MySimpleStructure{
int data1;
int data2;
MyOtherDataStructure m1;
}

然后我会在我的程序中使用它,

MySimpleStructure s1 = new MySimpleStructure();
s1.data1 = 19;
s1.m1 = new MyOtherDataStructure();

如何在 Ruby 中进行等效的实现。

最佳答案

class MySimpleStructure
attr_accessor :data1, :data2, :m1
end

s1 = MySimpleStructure.new
s1.data1 = 19
s1.m1 = MyOtherDataStructure.new

关于java - Ruby 中的简单数据结构等同于 Java,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3540950/

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