Example
#{example}"); ipb.editor_values.get('templates')['togglesource'] = new Template(""); ipb.editor_values.get('templates')['toolbar'] = new Template(""); ipb.editor_values.get('templates')['button'] = new Template("
Emoticons
"); // Add smilies into the mix ipb.editor_values.set( 'show_emoticon_link', false ); ipb.editor_values.set( 'bbcodes', $H({"snapback":{"id":"1","title":"Post Snap Back","desc":"This tag displays a little linked image which links back to a post - used when quoting posts from the board. Opens in same window by default.","tag":"snapback","useoption":"0","example":"[snapback]100[/snapback]","switch_option":"0","menu_option_text":"","menu_content_text":"","single_tag":"0","optional_option":"0","image":""},"topic":{"id":"5","title":"Topic Link","desc":"This tag provides an easy way to link to a topic","tag":"topic","useoption":"1","example":"[topic=1]Click me![/topic]","switch_option":"0","menu_option_text":"Enter the topic ID","menu_content_text":"Enter the title for this link","single_tag":"0","optional_option":"0","image":""},"post":{"id":"6","title":"Post Link","desc":"This tag provides an easy way to link to a post.","tag":"post","useoption":"1","example":"[post=1]Click me![/post]","switch_option":"0","menu_option_text":"Enter the Post ID","menu_content_text":"Enter the title for this link","single_tag":"0","optional_option":"0","image":""},"spoiler":{"id":"7","title":"Spoiler","desc":"Spoiler tag","tag":"spoiler","useoption":"0","example":"[spoiler]Some hidden text[/spoiler]","switch_option":"0","menu_option_text":"","menu_content_text":"Enter the text to be masked","single_tag":"0","optional_option":"0","image":""},"acronym":{"id":"8","title":"Acronym","desc":"Allows you to make an acronym that will display a description when moused over","tag":"acronym","useoption":"1","example":"[acronym='Laugh Out Loud']lol[/acronym]","switch_option":"0","menu_option_text":"Enter the description for this acronym (EG: Laugh Out Loud)","menu_content_text":"Enter the acronym (EG: lol)","single_tag":"0","optional_option":"0","image":""},"hr":{"id":"12","title":"Horizontal Rule","desc":"Adds a horizontal rule to separate text","tag":"hr","useoption":"0","example":"[hr]","switch_option":"0","menu_option_text":"","menu_content_text":"","single_tag":"1","optional_option":"0","image":""},"php":{"id":"14","title":"PHP Code","desc":"Allows you to enter PHP code into a formatted/highlighted syntax box","tag":"php","useoption":"0","example":"[php]$variable = true;\n\nprint_r($variable);[/php]","switch_option":"0","menu_option_text":"","menu_content_text":"","single_tag":"0","optional_option":"0","image":""},"html":{"id":"15","title":"HTML Code","desc":"Allows you to enter formatted/syntax-highlighted HTML code","tag":"html","useoption":"0","example":"[html]\n \n[/html]","switch_option":"0","menu_option_text":"","menu_content_text":"","single_tag":"0","optional_option":"0","image":""},"sql":{"id":"16","title":"SQL Code","desc":"Allows you to enter formatted/syntax-highlighted SQL code","tag":"sql","useoption":"0","example":"[sql]SELECT p.*, t.* FROM posts p LEFT JOIN topics t ON t.tid=p.topic_id WHERE t.tid=7[/sql]","switch_option":"0","menu_option_text":"","menu_content_text":"","single_tag":"0","optional_option":"0","image":""},"xml":{"id":"17","title":"XML Code","desc":"Allows you to enter formatted/syntax-highlighted XML code","tag":"xml","useoption":"0","example":"[xml]1 Replies - 37 Views - Last Post: Yesterday, 05:45 PM
#1
Reputation: 0
- Posts: 1
- Joined: Yesterday, 05:12 PM
Posted Yesterday, 05:28 PM
I am having some issues completing an assignment for my programming class. This deals with phone number dissection. I have most of the work done but I cannot seem to make the breakthrough on what is wrong with my code. I keep getting the same error: ".class" expected and ";" expected.I have consulted with my prof and he gave me a hint on what is wrong however, I have no clue what is is talking about. Can anyone decipher? Here's what he said, "You need to break the number apart inside the constructor."
Below is my program:
/***************************************************************************************
* JCDissector.java
* JR Camana
*
* This program dissects a phone number into its individual pieces.
****************************************************************************************/
public class JCDissector
{
String colonSeparated; //string holding the entire phone number separated by colons
String countryCode; //country code of a phone number
int areaCode; //area code of a phone number
int prefix; //prefix numbers in a phone number
int number; //last four digits of a phone number
public JCDissector(String colonSeparated)
{
this.colonSeparated = colonSeparated;
} //end constructor
public String getPhoneNumber(int i)
{
return this.colonSeparated;
} //end getPhoneNumber
public String getPhoneNumber(1)
{
countryCode = colonSeparated.subString(0,colonSeparated.indexOf(':'));
}
public String getPhoneNumber(2)
{
String tempAreaCode = colonSeparated.subString(countryCode + 1,colonSeparated.indexOf(':'));
areaCode = Integer.parseInt(tempAreaCode);
}
public String getPhoneNumber(3)
{
String tempPrefix = colonSeparated.subString(areaCode + 1,colonSeparated.indexOf(':'));
prefix = Integer.parseInt(tempPrefix);
}
public String getPhoneNumber(4)
{
String tempNumber = colonSeparated.subString(colonSeparated.lastIndexOf(':'));
number = Integer.parseInt(tempNumber);
}
}//end JCDissector
/***************************************************************************************
* JRCamanaProg1.java
* JR Camana
*
* This program is the Phone class for the driver JRCamanaProg1.java file.
****************************************************************************************/
public class JRCamanaProg1
{
public static void main(String[] args)
{
JCDissector phone = new JCDissector("1:919:882:5000");
System.out.println(phone.getPhoneNumber(int i));
System.out.println(phone.getPhoneNumber(4));
System.out.println(phone.getPhoneNumber(1));
System.out.println(phone.getPhoneNumber(3));
System.out.println(phone.getPhoneNumber(2));
}
}// end main
Is This A Good Question/Topic? 0
Replies To: Java Phone Number Dissection Error
#2
Reputation: 4
- Posts: 31
- Joined: 28-August 10
Re: Java Phone Number Dissection Error
Posted Yesterday, 05:45 PM
Rather than trying to pull the section in the method to get that section, you should do the dissection and set your phone number section variables when the object is constructed. I don't think that this has much to do with the errors you are receiving, but it could prevent errors further down the line.With the way you have this set up now, the instance variables countryCode, areaCode[/li], prefix, and [il]number remain undefined until the corresponding method is called. You can't/shouldn't control what order the methods will be called, because a different user might not know exactly how this has been set up, and won't use it the same way that you are. You're also running the dissection every single time the method is called. Rather than run it every time, run it once in the constructor and store the values in the variables.
You will also get problems with not returning anything in your methods, since you have specified that they should return a String.
Page 1 of 1
Source: http://www.dreamincode.net/forums/topic/322725-java-phone-number-dissection-error/
bonnaroo 2012 lineup twisted metal sea lion si swimsuit 2012 westminster dog show abe lincoln vampire hunter xi jinping
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.