FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
java2python/test/Ctor3.java at master · kurtli/java2python · GitHub
kurtli
/
java2python
Public
forked from
natural/java2python
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
java2python
/
test
/
Ctor3.java
Copy path
More file actions
More file actions
Latest commit
History
History
History
60 lines (45 loc) · 942 Bytes
Breadcrumbs
java2python
/
test
/
Ctor3.java
Copy path
File metadata and controls
60 lines (45 loc) · 942 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
class
Base
{
public
int
x
=
42
;
public
String
y
=
null
;
public
Base
() {
x
=
43
;
}
public
Base
(
String
arg
) {
y
=
arg
;
}
public
Base
(
int
arg
) {
x
=
arg
;
}
}
class
Test1
extends
Base
{
public
Test1
() {
}
}
class
Test2
extends
Base
{
public
Test2
() {
super
();
}
}
class
Test3
extends
Base
{
public
Test3
() {
super
(
"arg"
);
}
}
class
Test4
extends
Base
{
public
Test4
(
int
arg
) {
super
(
arg
);
}
}
public
class
Ctor3
{
public
static
void
main
(
String
[]
args
) {
Test1
t1
=
new
Test1
();
System
.
out
.
println
(
43
==
t1
.
x
?
1
:
0
);
Test2
t2
=
new
Test2
();
System
.
out
.
println
(
43
==
t2
.
x
?
1
:
0
);
Test3
t3
=
new
Test3
();
System
.
out
.
println
(
"arg"
==
t3
.
y
?
1
:
0
);
System
.
out
.
println
(
42
==
t3
.
x
?
1
:
0
);
Test4
t4
=
new
Test4
(
10
);
System
.
out
.
println
(
10
==
t4
.
x
?
1
:
0
);
}
}
Back
|
FazBrowse Home
|
New Git URL