摘要:
一、 点击查看代码 class Test { { int field = 200; // 实例初始化块中的局部变量,不会影响类字段的值 } public int field = 100; // 类字段初始化为100 public Test(int value) { this.field = valu 阅读全文
摘要:
include include using namespace std; typedef struct { char* base; int front; int rear; }SqQueqe; typedef struct { char* base; char* top; int stacksize 阅读全文