摘要: https://stackoverflow.com/a/2588667/8189120 In short, it sets free magical ponies. In long, Python 2.2 and earlier used "old style classes". They were 阅读全文
posted @ 2017-06-20 22:21 2021年的顺遂平安君 阅读(1850) 评论(0) 推荐(0)
摘要: https://stackoverflow.com/a/2588667/8189120 In short, it sets free magical ponies. In long, Python 2.2 and earlier used "old... 阅读全文
posted @ 2017-06-20 22:21 2021年的顺遂平安君 阅读(68) 评论(0) 推荐(0)
摘要: 编译语言一边执行每条语言一边翻译程序,而编译语言一次性将整个程序翻译成机器语言。 解释语言不生成中间文件,编译语言会生成中间文件。 解释语言会持续翻译程序直到遇到第一个错误,编译语言在检查完整段程序之后才会输出错误。 编译语言一次编译之后可以被重复... 阅读全文
posted @ 2017-06-20 21:45 2021年的顺遂平安君 阅读(62) 评论(0) 推荐(0)
摘要: 编译语言一边执行每条语言一边翻译程序,而编译语言一次性将整个程序翻译成机器语言。 解释语言不生成中间文件,编译语言会生成中间文件。 解释语言会持续翻译程序直到遇到第一个错误,编译语言在检查完整段程序之后才会输出错误。 编译语言一次编译之后可以被重复执行,解释语言每次运行都要重新翻译源程序。 条件控制 阅读全文
posted @ 2017-06-20 21:45 2021年的顺遂平安君 阅读(179) 评论(0) 推荐(0)
摘要: 第一阶段 使用编辑器编写的源代码 (.txt) 文件 _hello.c_。经过 _Pre processor_ 进行前处理。在前处理阶段,当 _pre processor_ 读到代码中的 时,会读取头文件 ,并将其直接插入源代码中。最后得到经过修改后的源代码文件 _hello.i_。 第二阶段 编译 阅读全文
posted @ 2017-06-20 21:31 2021年的顺遂平安君 阅读(524) 评论(0) 推荐(0)
摘要: 第一阶段 使用编辑器编写的源代码 (.txt) 文件 hello.c。经过 Pre-processor 进行前处理。在前处理阶段,当 pre-processor 读到代码中的#include时,会读取头文件stdio.h,并将其直接插入源代码中。最后得到... 阅读全文
posted @ 2017-06-20 21:31 2021年的顺遂平安君 阅读(80) 评论(0) 推荐(0)
摘要: 假设有这么一个 _class_ 现在要把一个字符串 _11 09 2012_ 作为变量,方法一: 但是每次初始化一个 _class_ 的 _instance_ 都要重复操作一次。所以,方法二: 和`classmethod`类似,区别在于不接收变量。例如在 _class_ 加入一个判断: @stati 阅读全文
posted @ 2017-06-20 19:51 2021年的顺遂平安君 阅读(242) 评论(0) 推荐(0)
摘要: 假设有这么一个 class class Date(object): def __init__(self, day=0, month=0, year=0): self.day = day self.month = mont... 阅读全文
posted @ 2017-06-20 19:51 2021年的顺遂平安君 阅读(56) 评论(0) 推荐(0)
摘要: There will be a file named uninstall.sh in /usr/local/netbeans-x.x if you installed netbeans with root privilege. If you inst... 阅读全文
posted @ 2017-06-20 15:56 2021年的顺遂平安君 阅读(50) 评论(0) 推荐(0)
摘要: There will be a file named uninstall.sh in /usr/local/netbeans x.x if you installed netbeans with root privilege. If you installed it with a normal us 阅读全文
posted @ 2017-06-20 15:56 2021年的顺遂平安君 阅读(178) 评论(0) 推荐(0)
摘要: A Python decorator is a specific change to the Python syntax that allows us to more conveniently alter functions and methods (and possibly classes in 阅读全文
posted @ 2017-06-20 11:31 2021年的顺遂平安君 阅读(144) 评论(0) 推荐(0)
摘要: A Python decorator is a specific change to the Python syntax that allows us to more conveniently alter functions and methods ... 阅读全文
posted @ 2017-06-20 11:31 2021年的顺遂平安君 阅读(60) 评论(0) 推荐(0)