一个简单的概念示例源码:
https://github.com/codejam1024/new-idea
以前不是要在文件开头 import 或者 using 来导入其他模块吗, 现在只要我访问了 app.web ,就会自动导入 web 模块,访问到了 app.console,就会自动导入 console 模块
化繁为简,世间万物皆对象
以 app 为起点
app.无限可能
app.人.走()
app.人.性别
抛弃了之前的复杂的导入和引用方式, import 或 using, 还有什么命名空间, 主要还看我 github 上的源码,希望各位发表各自的观点
app = []
def run():
print('core run.')
print('last config host : ' + app.config.host)
print('last config port : ' + app.config.port)
host = input('Input server host(127.0.0.1):') or '127.0.0.1'
port = input('Input server port(8080):') or '8080'
app.config.host = host
app.config.port = port
app.config.save()
app.server.run()
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.