当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Julia parentmodule用法及代码示例


用法一

parentmodule(m::Module) -> Module

获取模块的封闭 ModuleMain 是它自己的父级。

另请参阅: names nameof fullname @__MODULE__

例子

julia> parentmodule(Main)
Main

julia> parentmodule(Base.Broadcast)
Base

用法二

parentmodule(t::DataType) -> Module

确定包含(可能是UnionAll -wrapped)DataType 定义的模块。

例子

julia> module Foo
           struct Int end
       end
Foo

julia> parentmodule(Int)
Core

julia> parentmodule(Foo.Int)
Foo

用法三

parentmodule(f::Function) -> Module

确定包含(第一个)泛型函数定义的模块。

用法四

parentmodule(f::Function, types) -> Module

确定包含给定泛型函数定义的模块。

相关用法


注:本文由纯净天空筛选整理自julialang.org 大神的英文原创作品 Base.parentmodule — Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。