我想做这样的事情......
I want to do something like this...
def helloWorld():
print "Hello world!"
str.helloWorld = helloWorld
"foo".helloWorld()
这会打印出Hello world!"
Which would print out "Hello world!"
参考 我可以添加内置 Python 类型的自定义方法/属性?
简而言之,你不能.Python 方式是继承 String 并从那里开始工作.
In short, you can't. The Python Way would be to subclass String and work from there.
这篇关于如何将我自己的自定义属性添加到现有的内置 Python 类型?像一个字符串?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!