?? classdictinit.java
字號:
// Copyright 2000 Finn Bockpackage org.python.core;/** * An empty tagging interface that can be used if a java class * want control over the class dict initialization. * When a java class implements this interface, it must also have * a method like: * <pre> * public static void classDictInit(PyObject dict) { .. } * </pre> * The method will be called when the class is initialized. The * method can then make changes to the class's __dict__ instance, * f.example be removing method that should not be avaiable in python * or by replacing some method with high performance versions. */public interface ClassDictInit{ // An empty tagging interface.}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -