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]3 Replies - 47 Views - Last Post: Yesterday, 07:29 PM
#1
Reputation: 0
- Posts: 2
- Joined: 13-April 13
Posted Yesterday, 07:13 PM
I have a method inside the class Student, that I am trying to use in my main program to give an int test1 a value, to be able to use. No matter what I try I keep getting a different compile error.method: int i is the index location, and j is the actual score:
public void setTestScore(int i, int j) { if(i >= 0 && i < 3) TestScores[i] = j <= 0 ? 0 : j; }
to call the method
int test1 = Student.setTestScore();
Is This A Good Question/Topic? 0
Replies To: declaring value for int using method from another class
#2
Reputation: 7855
- Posts: 30,702
- Joined: 06-March 08
Re: declaring value for int using method from another class
Posted Yesterday, 07:17 PM
public void setTestScore(int i, int j)method expects two parameters i and j. You call it
int test1 = Student.setTestScore(); <--- without these 2 parameters
#3
Reputation: 812
- Posts: 2,523
- Joined: 12-December 12
Re: declaring value for int using method from another class
Posted Yesterday, 07:19 PM
int test1 = Student.setTestScore();
You are not supplying the required arguments, for i and j;
You cannot call your method on the Student class as it is not a static method - you need to call it on an instance of the class;
The method does not return a value (void) so you cannot assign it to an integer variable.
#4
Reputation: 0
- Posts: 7
- Joined: 02-October 08
Re: declaring value for int using method from another class
Posted Yesterday, 07:29 PM
taylor1992, on 14 April 2013 - 07:13 PM, said:
I have a method inside the class Student, that I am trying to use in my main program to give an int test1 a value, to be able to use. No matter what I try I keep getting a different compile error.method: int i is the index location, and j is the actual score:
public void setTestScore(int i, int j) { if(i >= 0 && i < 3) TestScores[i] = j <= 0 ? 0 : j; }
to call the method
int test1 = Student.setTestScore();
[quote]
2 mistakes here.
1. The return value must be "int" and not "void"
So redeclare your function as
public int steTestScore(int i, int j) { ... }
2. Pass the arguments i and j during the function call.
int test1 = Student.setTestScore(4,5);
Page 1 of 1
justin timberlake gerard butler danielle fishel daylight savings Daylight Savings Time 2013 DeAndre Jordan Oz the Great and Powerful
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.