You haven't told us what the error is.
I spot the following:
for(char x:letters){
This form of the for loop will iterate over each character in letters. Thus, x will be set to each character in letters. However, you're attempting to use it as an index - which is kind-of ok since a char can be cast to an int. But, since you never initialize the array of characters (letters), you'll always get a value of 0 for x. Which means you're always setting the first element of letters, overwriting the previous.
for(int i=thing.length()....
Since arrays are 0-indexed, the length will always be one more than the index of the last element. Thus, by accessing the array with the length of the array, you're going out of bounds by 1. You should initialize i to thing.length()-1.
String retval += letters[i];
This fails to compile - you can't declare and append. retval should be declared outside of the for loop.
Here's a fix to your code that makes use of the toCharArray() method available for String objects:
public dids(String thing)
{
letters= thing.toCharArray();
String retval = "";
for(int i=thing.length()-1;i>=0;i--){
retval += letters[i];
}
}
A slightly more efficient solution might be:
public dids(String thing)
{
StringBuilder sb = new StringBuilder();
for(int i = thing.length()-1; i >=0; i-- )
{
sb.append(thing.charAt(i));
}
}
This is better because
a. Strings are immutable which means that once created they cannot be modified (unless you resort to using reflection) and each time you append to a string, you're actually creating a new object which is wasteful in this situation. A StringBuilder or StringBuffer is meant to be used in a case where you want to make changes to a sequence of characters.
b. Since a String can be accessed character by character, you don't actually need to create a character array representation of the string to reverse it.
I cannot add a char to a string.) – Paŭlo Ebermann Aug 28 '11 at 11:45