作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我最近开始在 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
自动生成的。宏。
@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/
我是一名优秀的程序员,十分优秀!