代码搜索结果
找到约 10,000 项符合
Test 的代码
test.clw
; CLW file contains information for the MFC ClassWizard
[General Info]
Version=1
LastClass=CTestDlg
LastTemplate=CDialog
NewFileInclude1=#include "stdafx.h"
NewFileInclude2=#include "Test.h"
test.java
/*
COMP 630C project
Re-implementation of R+ tree
Group member:
Cheng Wing Hang, Nelson
Cheung Kwok Ho, Steven
Ngai Ming Wai, Ryan
Shiu Hoi Nam
Tsui Chi Man
*/
import java.*;
test.html
Test
test.txt
1111
2222
3333
test.java
class Rectangle
{
protected int width;
protected int height;
//下面是类Rectangle的三个构造方法
public Rectangle()
{ //此方法无参数,缺省地给出长和宽
width=20;height=30;
}
public Rectangle(int w,int h)
test.java
class Rectangle
{
protected int width;
protected int height;
//下面是类Rectangle的三个构造方法
public Rectangle()
{ //此方法无参数,缺省地给出长和宽
width=20;height=30;
}
public Rectangle(int w,int h)