《CPython Internals》学习第 8 天,p118-p150 总结,总计 33 页。
一、技术总结
补充一些本人整理的关于 Context-Free Grammar(CFG) 的知识。
1.symbol(符号)
A mathematical symbol is a figure or a combination of figures that is used to repre…
1. 泛型类
泛型类是指在类定义时使用类型参数来指定类的类型。这样可以在类的内部使用这些类型参数来定义字段、方法的返回类型和参数类型。
public class Box<T> {private T t;public void set(T t) {this.t t;}public T get() {return t;}
}在这个例子中,…