Hallo Liebe Forum User,
Ich habe folgendes Problem das ich eine Langsame und schelle Suchfunktion basteln muss die langsame soll mit Indexof erfolgen.
Er gibt mir folgenden Fehler aus
Error3, 8) java: class suchTest is public, should be declared in a file named suchTest.java
Error37, 29) java: incompatible types: int cannot be converted to java.lang.String
Ich bin wirklich blutiger Anfänger und bitte um euer Verständnis
Lg
J3l4ck
Ich habe folgendes Problem das ich eine Langsame und schelle Suchfunktion basteln muss die langsame soll mit Indexof erfolgen.
Code:
public static void main(String[] args) {
suchTest mySuche = new suchTest("Hallo mein Name ist Max", "mein");
System.out.println(mySuche);
}
}
package com.company;
public class suchTest {
String text;
String stext;
public suchTest(String x, String y) {
this.text = x;
this.stext = y;
}
public String getText() {
return this.text;
}
;
public void setText(String x) {
this.text = x;
}
public String getstext() {
return this.stext;
}
;
public void setStext(String y) {
this.stext = y;
}
;
public String toString() {
return (text.indexOf(stext));
}
}
Er gibt mir folgenden Fehler aus
Error3, 8) java: class suchTest is public, should be declared in a file named suchTest.java
Error37, 29) java: incompatible types: int cannot be converted to java.lang.String
Ich bin wirklich blutiger Anfänger und bitte um euer Verständnis
Lg
J3l4ck