gpt4 book ai didi

julia - 在 Julia 中限定冲突函数

转载 作者:行者123 更新时间:2023-12-01 07:46:37 24 4
gpt4 key购买 nike

我有以下冲突的导出:

using DataFrames
using DataStructures

以下返回错误:

tail(dfc)
WARNING: both DataStructures and DataFrames export "tail"; uses of it in module Main must be qualified
ERROR: UndefVarError: tail not defined

我在一个论坛上看到了这个语法,但还是失败了:

DataFrames::tail(dfc)
ERROR: UndefVarError: tail not defined

有什么想法吗?

最佳答案

这似乎适用于 julia 版本 0.4.6:

julia> using DataFrames, DataStructures

julia> lst = list(1, 2, 3)
list(1, 2, 3)

julia> DataStructures.tail(lst)
list(2, 3)

:: 用于指定类型信息。

关于julia - 在 Julia 中限定冲突函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37926690/

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