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 - 57 Views - Last Post: Yesterday, 07:02 AM
#1
Reputation: -2
- Posts: 89
- Joined: 27-October 12
Posted Yesterday, 06:38 AM
My issue is that I want to add a new Pile to the currentTrolley.And I want only to Pile p to the list of piles in the first Trolley.Any help would be appreciated. Currently it is adding Pile p to every trolleyfor (int i = 0; i < toBeSorted.size(); i++) { Parcel currentParcel = toBeSorted.get(i); System.out.println(currentParcel); for (int j = 0; j < trolleys.size(); j++) { Trolley currentTrolley = trolleys.get(j); System.out.println(currentTrolley); if(currentTrolley.piles.size()<1){ Pile p = new Pile(0, 0, 0); currentTrolley.piles.add(p); System.out.println(currentTrolley.piles); } else { System.out.println("Something is here"); } } } }
Is This A Good Question/Topic? 0
Replies To: for loop issue
#2
Reputation: 5353
- Posts: 8,569
- Joined: 19-March 11
Re: for loop issue
Posted Yesterday, 06:49 AM
Your question is not altogether clear, but when I look at your code, I see a nested loop over two apparently independent collections. What this means is that if you have n items in toBeSorted, you're going to apply the inner loop to each Trolley in tolleys n times - that may not be what you want.Without understanding the relationships between Trolleys and Parcels and Piles and whatnot, it's hard to see what you're after here. If that clue about the nested loops didn't do the work, maybe you can explain what you're trying to do.
#3
Reputation: 978
- Posts: 3,023
- Joined: 12-December 12
Re: for loop issue
Posted Yesterday, 06:53 AM
jon.kiparsky, on 06 May 2013 - 01:49 PM, said:
Your question is not altogether clear, but when I look at your code, I see a nested loop over two apparently independent collections. What this means is that if you have n items in toBeSorted, you're going to apply the inner loop to each Trolley in tolleys n times - that may not be what you want.Without understanding the relationships between Trolleys and Parcels and Piles and whatnot, it's hard to see what you're after here. If that clue about the nested loops didn't do the work, maybe you can explain what you're trying to do.
I was about to say the same . Additionally, you state that you want to add something to the first trolley; in which case, it doesn't make sense to loop through all the trolleys.
#4
Reputation: 5353
- Posts: 8,569
- Joined: 19-March 11
Re: for loop issue
Posted Yesterday, 07:02 AM
andrewsw, on 06 May 2013 - 08:53 AM, said:
you state that you want to add something to the first trolley; in which case, it doesn't make sense to loop through all the trolleys.
Yes, this is what I was trying to imply. Perhaps "this may not be what you want" is a little more diplomatic than is required.
Page 1 of 1
Source: http://www.dreamincode.net/forums/topic/320401-for-loop-issue/
Pokemon nhl jillian michaels Freddy E NHL lockout Honey Boo Boo pirate bay
কোন মন্তব্য নেই:
একটি মন্তব্য পোস্ট করুন