subject

IN JAVAHW4_P2 - MyStringThe String class is provided in the Java library. Provide your own implementation for the following methods (name the new class MyString):DO NOT USE THE STRING OBJECT AND ITS METHODS. IMPLEMENT THEM ALL AGAIN YOURSELF!**You can use char[] and Character object. public MyString(char[] chars);public char charAt(int index);public int length();public MyString substring(int begin, int end);public MyString toLowerCase();public boolean equals(MyString s);public static MyString valueOf(int i);public char[] toChars();Use the following class driver with no modifications to it!import java. util.*;import java. lang.*;import java. io.*;class DriverMain{public static void main(String[] args) {MyString s1 = new MyString(new char[] {'A', 'B', 'C'});System. out. println(s1.length());System. out. println(s1.charAt(1));MyString s2 = s1.substring(0,2);System. out. println(s2.toLowerCase().equals(new MyString(new char[] {'a', 'b'})));char[] chars = MyString. valueOf(345).toChars();for (int i = 0; i < chars. length; i++) {System. out. print(chars[i]);}}}---And use the following class that was refered to in mainclass MyString { public MyString(char[] chars){ }public char charAt(int index){ }public int length(){ }public MyString substring(int begin, int end){ }public MyString toLowerCase(){ }public boolean equals(MyString s){ }public static MyString valueOf(int i){ }public char[] toChars(){ } }PLEASE follow the instructions that are provided and comment the code so I can understand it better!I'm really confused about this assignment and need as much help as possible!

ansver
Answers: 1

Another question on Computers and Technology

question
Computers and Technology, 22.06.2019 16:00
Why should characters such as / \ " ' * ; - ? [ ] ( ) ~ ! $ { } < > # @ & | space, tab, and newline be avoided in file names?
Answers: 2
question
Computers and Technology, 22.06.2019 19:20
Terri needs to insert a cover page into her document. where should she go to access the commands to do so? o insert tab, objects group o insert tab, illustrations group o insert tab, pages group o insert tab, media group submit
Answers: 1
question
Computers and Technology, 25.06.2019 08:10
Which of the following statements is false? a. package access is rarely used. b. use the access modifier package to give a method or variable package access. c. classes in the same source file are part of the same package. d. if a program uses multiple classes from the same package, these classes can access each other's package access members directly through references to objects of the appropriate classes, or in the case of static members, through the class name.
Answers: 1
question
Computers and Technology, 25.06.2019 08:40
Anyone took cgs 1060 and took exam for simnet, slide 50 question on 1st exam.
Answers: 3
You know the right answer?
IN JAVAHW4_P2 - MyStringThe String class is provided in the Java library. Provide your own implement...
Questions
question
Mathematics, 11.09.2020 17:01
question
Mathematics, 11.09.2020 17:01
question
Mathematics, 11.09.2020 17:01
question
Mathematics, 11.09.2020 17:01
question
Mathematics, 11.09.2020 17:01
question
Mathematics, 11.09.2020 17:01
question
Health, 11.09.2020 17:01
question
Mathematics, 11.09.2020 17:01
question
Mathematics, 11.09.2020 17:01
question
Mathematics, 11.09.2020 17:01
question
Mathematics, 11.09.2020 17:01
question
Biology, 11.09.2020 17:01
question
Mathematics, 11.09.2020 17:01
question
History, 11.09.2020 17:01
question
Mathematics, 11.09.2020 17:01
question
Mathematics, 11.09.2020 17:01
question
English, 11.09.2020 17:01
question
World Languages, 11.09.2020 17:01
question
Mathematics, 11.09.2020 17:01
question
Mathematics, 11.09.2020 17:01
Questions on the website: 13722367