I am working on an Java 11 project,
This is my build.gradle:
plugins {
id 'java'
}
//
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
repositories {
maven { url 'https://oss.sonatype.org/content/repositories/snapshots/' }
}
dependencies {
implementation 'org.projectlombok:lombok:1.18.18'
implementation "io.vavr:vavr:0.10.3"
compileOnly 'org.projectlombok:lombok:1.18.20'
annotationProcessor 'org.projectlombok:lombok:1.18.20'
implementation 'systems.manifold:manifold-science:2021.1.25-SNAPSHOT'
testCompileOnly 'org.projectlombok:lombok:1.18.20'
testAnnotationProcessor 'org.projectlombok:lombok:1.18.20'
testAnnotationProcessor 'org.openjdk.jmh:jmh-generator-annprocess'
testImplementation 'org.junit.jupiter:junit-jupiter-engine'
}
test {
useJUnitPlatform()
testLogging {
events "passed", "skipped", "failed"
}
}
My Manifold's extension method:
import manifold.ext.rt.api.Extension;
import manifold.ext.rt.api.This;
@Extension
public class MyStringEx {
public static void echo(@This String thiz) {
System.out.println(thiz);
}
}
It successfully compiled.
But now, I want to add a method to the java.lang.String
class through the Manifold extension annotation,
I have tried this:
public class Main {
public static void main(String[] args) {
"hello".echo(); // Add your own methods to String!
}
}
But I get error:
java: cannot find symbol
symbol: method echo()
location: class java.lang.String
Firstly, you can try the answer mentioned above. But if you're using IntelliJ IDEA, then an easier solution might be:
Ctrl+Alt+S to open IDE Settings -> Plugins -> Search for mainfold -> Install it -> Create a new Extension class -> Type the class you wanna extend -> Create and do your work in it.