如何在Julia中导入自定义模块

如何在Julia中导入自定义模块

本文介绍了如何在Julia中导入自定义模块的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在这里写了一个模块:

I have a module I wrote here:

# Hello.jl
module Hello
    function foo
        return 1
    end
end

# Main.jl
using Hello
foo()

当我运行Main模块时:

$ julia ./Main.jl

我收到此错误:

ERROR: LoadError: ArgumentError: Hello not found in path
 in require at ./loading.jl:249
 in include at ./boot.jl:261
 in include_from_node1 at ./loading.jl:320
 in process_options at ./client.jl:280
 in _start at ./client.jl:378
while loading /Main.jl, in expression starting on line 1

推荐答案

您应include("./Hello.jl")using Hello

这篇关于如何在Julia中导入自定义模块的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-01 23:46