Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法检查vim中变量的类型?我需要检查以确保我的函数参数是一个数字并且不知道如何去做。
你正在寻找type(varname).
type(varname)
请注意,显式类型检查有点代码味道(特别是因为 Vim 所做的确切隐式类型转换并不广为人知);尽管我不得不承认,有时它们确实会提供一个漂亮而简短的功能界面。