make function for .class and .dex
This commit is contained in:
parent
8feefbefe5
commit
1d6ff63406
6 changed files with 91 additions and 24 deletions
10
java/actual/com/example/shadowing/Main.java
Normal file
10
java/actual/com/example/shadowing/Main.java
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
package com.example.shadowing;
|
||||
|
||||
public class Main {
|
||||
private static String value = "actual";
|
||||
public static void actual() {}
|
||||
public static String getValue() {
|
||||
actual();
|
||||
return Main.value;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue