반응형
도입
메서드 오류
hrthtrh()
UndefVarError: hrthtrh not defined
push!()
MethodError: no method matching push!()
Closest candidates are:
push!(::AbstractChannel, ::Any) at /opt/julia-1.6.3/julia-1.6.3/share/julia/base/channels.jl:10
push!(::Set, ::Any) at /opt/julia-1.6.3/julia-1.6.3/share/julia/base/set.jl:59
push!(::Base.InvasiveLinkedListSynchronized{T}, ::T) where T at /opt/julia-1.6.3/julia-1.6.3/share/julia/base/task.jl:570
function printthisthang(x::Int64)
println(x)
end
printthisthang(5.5)
MethodError: no method matching printthisthang(::Float64) Closest candidates are: printthisthang(::Int64) at In[6]:1
mutable struct OurCollection
x
function OurCollection(x::Any ...)
new(x)
end
end
```
```js
z = OurCollection(5, 10, 15)
z[2]
MethodError: no method matching getindex(::OurCollection, ::Int64)
```
```js
import Base: getindex
getindex(x::OurCollection, i::Int64) = x.x[i]
z[2]
10
```
<div class="content-ad"></div>
'프로그래밍' 카테고리의 다른 글
IT 업계에서 가장 큰 거짓말은 무엇입니까? (0) | 2022.02.15 |
---|---|
Python 강화 제안에서 제공하는 향후 Python 기능 (0) | 2022.02.15 |
신입 프로그래머에게 첫 출근 날 주는 9가지 조언 (0) | 2022.02.15 |
프로그래밍 언어에 문자가 없는 경우 (0) | 2022.02.15 |
비대칭 암호화를 사용하여 Python으로 메시지 암호화 (0) | 2022.02.15 |
댓글