gpt4 book ai didi

julia - 如何在 Julia 中为结构创建构造函数?

转载 作者:行者123 更新时间:2023-12-04 11:23:57 28 4
gpt4 key购买 nike

我最近开始在 Julia 中做面向对象的工作,并且喜欢使用结构体(Python 相当于一个类?)。
我阅读了有关结构的文档 here ,但我在结构中没有看到任何关于构造函数或方法的信息。我已经看到在一些地方使用了结构体,有人在结构体内部实际定义了一个函数。我怎么能这样做,你为什么要那样做?

最佳答案

当您仔细阅读 StefanKarpinski 建议的文档(它真的很好)后,请查看 Parameters在我看来,它使面向对象的 Julia 转换变得更好。
看看这个代码:

@with_kw mutable struct Agent
age = 0
income = rand()
end

function Agent(age::Int)
income = rand()+age*10
Agent(age, income)
end
现在有一些用法:
julia> Agent()
Agent
age: Int64 0
income: Float64 0.28109332504865625


julia> Agent(income=33)
Agent
age: Int64 0
income: Int64 33


julia> Agent(age=3)
Agent
age: Int64 3
income: Float64 0.5707873066917069


julia> Agent(30)
Agent
age: Int64 30
income: Float64 300.1706559468855
最后一个构造函数是定制的,而前面三个是由 @withkw自动生成的。宏。
最后但并非最不重要的。考虑一个循环引用数据结构,即 AgentY1 只能有 AgentY2 类型的 friend ,AgentY2 只能有 AgentY1 类型的 friend :
据我所知(如果我错了,也许有人可以纠正我)这只能使用宏来实现:
@with_kw mutable struct AgentY1
age::Int
friends=AgentY2[]
end


@with_kw mutable struct AgentY2
age::Int
friends=AgentY1[]
end
现在示例用法:
julia> aa = AgentY1(age=11)
AgentY1
age: Int64 11
friends: Array{AgentY2}((0,))
这就是我在 Julia 中进行面向对象编程的方式。

关于julia - 如何在 Julia 中为结构创建构造函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59218275/

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