Jump to content

Welcome to Geeks to Go - Register now for FREE

Need help with your computer or device? Want to learn new tech skills? You're in the right place!
Geeks to Go is a friendly community of tech experts who can solve any problem you have. Just create a free account and post your question. Our volunteers will reply quickly and guide you through the steps. Don't let tech troubles stop you. Join Geeks to Go now and get the support you need!

How it Works Create Account
Photo

java compiler not working


  • Please log in to reply

#1
gold_y

gold_y

    Member

  • Member
  • PipPip
  • 31 posts
when i tried to compile a java Program i had created.I got the following Error.
Error occoured during initialization of VM java/lang/NoClassDefFoundError: java/lang/Object

I reinstalled the entire thing from the system and when i tried to compile the java Program again it gives like a 1000 errors even on the programs i know that work fine and even the very basic 5 or 10 line Programs.Can someone tell me what is happening??
  • 0

Advertisements


#2
gold_y

gold_y

    Member

  • Topic Starter
  • Member
  • PipPip
  • 31 posts
Having Deleted a file in the folder that i was executing the javac seem to have fixed the problem.It was called String.java
and the content of the file were as mentioned under:Any help on why it happened or what the file was doing would be really appreciated.

The content of the file:-

""Java String Examples

The String class implements immutable character strings, which are read-only once the string object has been created and initialized. All string literals in Java programs, are implemented as instances of String class.

The easiest way to create a Java String object is using a string literal:

1.
String str1 = "I can't be changed once created!";


A Java string literal is a reference to a String object. Since a String literal is a reference, it can be manipulated like any other String reference. i.e. it can be used to invoke methods of String class.

For example,

1.
int myLenght = "Hello world".length();


The Java language provides special support for the string concatenation operator (), which has been overloaded for Java Strings objects. String concatenation is implemented through the StringBuffer class and its append method.

For example,

1.
String finalString = "Hello" "World";


Would be executed as

1.
String finalString = new StringBuffer().append("Hello").append("World").toString();


The Java compiler optimizes handling of string literals. Only one String object is shared by all strings having same character sequence. Such strings are said to be interned, meaning that they share a unique String object. The Java String class maintains a private pool where such strings are interned.

For example,

1.
String str1="Hello";
2.
String str2="Hello";
3.
If(str1 == str2)
4.
System.out.println("Equal");


Would print Equal when executed.

Since the Java String objects are immutable, any operation performed on one String reference will never have any effect on other references denoting the same object.

String Constructors
String class provides various types of constructors to create String objects. Some of them are,

String()
Creates a new String object whose content is empty i.e. "".

String(String s)
Creates a new String object whose content is same as the String object passed as an argument.

Note: Invoking String constructor creates a new string object, means it does not intern the String. Interned String object reference can be obtained by using intern() method of the String class.

String also provides constructors that take byte and char array as an argument and returns String object.

String equality - Compare Java String
String class overrides the equals() method of the Object class. It compares the content of the two string object and returns the boolean value accordingly.

For example,

1.
String str1="Hello";
2.
String str2="Hello";
3.
String str3=new String("Hello") //Using constructor.
4.

5.
If(str1 == str2)
6.
System.out.println("Equal 1");
7.
Else
8.
System.out.println("Not Equal 1");
9.

10.
If(str1 == str3)
11.
System.out.println("Equal 2");
12.
Else
13.
System.out.println("I am constructed using constructor, hence not interned");
14.

15.
If( str1.equals(str3) )
16.
System.out.println("Equal 3");
17.
Else
18.
System.out.println("Not Equal 3");


The output would be,
Equal 1
Not Equal 2
Equal 3

Note that == compares the references not the actual contents of the String object; Where as equals method compares actual contents of two String objects.

String class also provides another method equalsIgnoreCase() which ignores the case of contents while comparing.

Apart from these methods String class also provides compareTo methods.

int compareTo(String str2)
This method compares two Strings and returns an int value. It returns
- value 0, if this string is equal to the string argument
- a value less than 0, if this string is less than the string argument
- a value greater than 0, if this string is greater than the string argument

int compareTo(Object object)
This method behaves exactly like the first method if the argument object is actually a String object; otherwise, it throws a ClassCastException."""
  • 0






Similar Topics

0 user(s) are reading this topic

0 members, 0 guests, 0 anonymous users

As Featured On:

Microsoft Yahoo BBC MSN PC Magazine Washington Post HP