forked from Jossc/JavaCode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDataPoint.java
More file actions
32 lines (25 loc) · 597 Bytes
/
DataPoint.java
File metadata and controls
32 lines (25 loc) · 597 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
package com.match;
/**
* PACKAGE_NAME: com.match
* MONTH_NAME_SHORT: 十二月
* USER: Clement
**/
public class DataPoint {
public float x;
public float y;
public DataPoint(float x, float y) {
this.x = x;
this.y = y;
}
public DataPoint(){
}
public static void main(String[] args) {
long i= Long.parseLong("F0FE6BEF44CE", 16);
//
//59 264975523155932
//57 264975523206500 50568
//65 264975523207656 1156
//67 264975523202254 264975523202254
System.out.println("i:" + i );
}
}