代码搜索:CreatePoint
找到约 28 项符合「CreatePoint」的源代码
代码结果 28
www.eeworm.com/read/189194/8485444
bmp createpoint.bmp
#define createpoint_width 12
#define createpoint_height 12
static char createpoint_bits[] = {
0x00, 0x00, 0x60, 0x00, 0x60, 0x00, 0x60, 0x00, 0x60, 0x00, 0x9e, 0x07,
0x9e, 0x07, 0x60, 0x00, 0x60
www.eeworm.com/read/131090/14161363
bmp createpoint.bmp
#define createpoint_width 12
#define createpoint_height 12
static char createpoint_bits[] = {
0x00, 0x00, 0x60, 0x00, 0x60, 0x00, 0x60, 0x00, 0x60, 0x00, 0x9e, 0x07,
0x9e, 0x07, 0x60, 0x00, 0x60
www.eeworm.com/read/209030/15228838
bmp createpoint.bmp
#define createpoint_width 12
#define createpoint_height 12
static char createpoint_bits[] = {
0x00, 0x00, 0x60, 0x00, 0x60, 0x00, 0x60, 0x00, 0x60, 0x00, 0x9e, 0x07,
0x9e, 0x07, 0x60, 0x00, 0x60
www.eeworm.com/read/113670/15451385
bmp createpoint.bmp
#define createpoint_width 12
#define createpoint_height 12
static char createpoint_bits[] = {
0x00, 0x00, 0x60, 0x00, 0x60, 0x00, 0x60, 0x00, 0x60, 0x00, 0x9e, 0x07,
0x9e, 0x07, 0x60, 0x00, 0x60
www.eeworm.com/read/391678/8391600
txt chap4-3.txt
// 程序4-3
class point {
int x, y;
point(int a, int b){ // 构造函数与类同名
x=a; y=b; // 对实例变量赋值
}
}
public class createPoint {
public static void main(String args
www.eeworm.com/read/391678/8391616
txt chap4-4.txt
// 程序4-4
class point { // 该类中没有定义构造函数
int x, y;
}
public class createPoint {
public static void main(String args[ ]){
point p= new point( ); // 调用系统默认构造函数
www.eeworm.com/read/315789/13536647
txt chap4-3.txt
// 程序4-3
class point {
int x, y;
point(int a, int b){ // 构造函数与类同名
x=a; y=b; // 对实例变量赋值
}
}
public class createPoint {
public static void main(String args