active questions tagged switch - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T08:54:05Z http://stackoverflow.com/feeds/tag/switch http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1804963/how-to-relocate-copied-svn-folder 0 How to relocate copied svn folder phx 2009-11-26T17:53:49Z 2009-11-26T18:29:10Z <p>Hey all,</p> <p>i copied an existing svn folder (a) to a new folder b and want to also switch the repository url. Its still pointing to a repo.</p> <p>i try svn switch --relocate but only get:</p> <p>svn: Relocate can only change the repository part of an URL</p> <p>What is the right way to do this task?</p> <p>Thanks for your help!</p> http://stackoverflow.com/questions/1568348/why-do-i-need-to-use-break 4 Why do I need to use break? Uwe Honekamp 2009-10-14T19:08:31Z 2009-11-25T18:02:58Z <p>I was wondering why C# requires me to use <code>break</code> in a <code>switch</code> statement although a fall-through semantics is by definition not allowed. hence, the compiler could generate the <code>break</code> at the end of each <code>case</code>-block and save me the hassle. </p> <p>However, there is one scenario (which has already been discussed on this site) which I could come up with that might be the reason for the explicit usage of <code>break</code>:</p> <pre><code>switch (foo) { case 0: case 1: bar(); break; default: break; } </code></pre> <p>Here, the method <code>bar()</code> is called if <code>foo</code> has either the value 0 or 1.</p> <p>This option would break in the truest sense of the word if the compiler would generate <code>break</code> statements by itself. Is this it, is this the reason why the break is compulsory or are there any other good reasons?</p> http://stackoverflow.com/questions/1797667/c-switch-statement-refactoring 3 C# Switch Statement refactoring koosk 2009-11-25T15:26:04Z 2009-11-25T15:49:39Z <p>The purpose of the code below is to determine if a particular date qualifies as a "weekend" i.e after 12:00 PM on Thursday, minimum 2 days and before Monday 12:00 PM</p> <p>Is there a better way? If-Else turns ugly and the Strategy pattern is way too much work for this.</p> <pre><code>public bool ValidateWeekend(DateTime pickupDate, DateTime dropoffDate) { TimeSpan ts = dropoffDate.Subtract(pickupDate); if (ts.TotalDays &gt;= 2 &amp;&amp; ts.TotalDays &lt;= 4) { switch (pickupDate.DayOfWeek) { case DayOfWeek.Thursday: if (pickupDate.Hour &gt;= 12) { switch (dropoffDate.DayOfWeek) { case DayOfWeek.Sunday: return true; case DayOfWeek.Monday: if (dropoffDate.Hour &lt;= 12) { return true; } return false; } } break; case DayOfWeek.Friday: switch (dropoffDate.DayOfWeek) { case DayOfWeek.Sunday: return true; case DayOfWeek.Monday: if (dropoffDate.Hour &lt;= 12) { return true; } return false; } break; case DayOfWeek.Saturday: switch (dropoffDate.DayOfWeek) { case DayOfWeek.Sunday: return true; case DayOfWeek.Monday: if (dropoffDate.Hour &lt;= 12) { return true; } return false; } return false; } } return false; } </code></pre> http://stackoverflow.com/questions/1794689/code-smell-in-this-switch-statement 2 Code smell in this switch statement? Random 2009-11-25T04:45:14Z 2009-11-25T05:44:08Z <p>I'm wondering where a switch statement of this style should be changed to an if else statement.</p> <pre><code>switch (foo) // foo is an enumerated type { case barOne: if (blahOne) { DoFunction(//parameters specific to barOne); break; } case barTwo: if (blahTwo) { DoFunction(//parameters specific to barTwo); break; } //etc. default: // Whatever happens if none of the case's conditionals are met } </code></pre> <p>Basically fall through is happening unless a condition is met for one of the cases. The cases are very similar, differing only in what needs to be checked for and what needs to be passed, which is why I used a switch statement.</p> <p>Would it be better to use <code>if</code> <code>else if</code>? Otherwise, is it clear enough to stay, but unclear enough to warrant a comment about the fallthrough? Polymorphism is also always an option, but it seems like overkill to me.</p> http://stackoverflow.com/questions/1794696/c-switch-break 1 C# switch/break Russell 2009-11-25T04:48:07Z 2009-11-25T05:09:30Z <p>It appears I need to use a break in each case block in my switch statement using C#.</p> <p>I can see the reason for this in other languages where you can fall through to the next case statement.</p> <p>Is it possible for case blocks to fall through to other case blocks?</p> <p>Thanks very much, really appreciated!</p> http://stackoverflow.com/questions/1774062/what-isthe-best-way-to-write-a-c-application-kill-switch 0 What isthe best way to write a C# application "kill switch"? Jim Beam 2009-11-21T00:29:57Z 2009-11-21T15:47:23Z <p>I need to write a "kill switch" into my C# application for licensing/billing purposes. What is the best way to do that?</p> <p>The requirements are as follows (its actually 2 kill switches):</p> <p>1 - "passive kill switch" - If a particular user does not log into the application in X days then the application stops working.</p> <p>2 - "active kill switch" - A user can log in and set a date in the future when the application will stop working.</p> <p>I can think of various ways to do this with a database but users might be able to bypass that. Is there a way I can use an encrypted database or something of the sort? Or maybe a secured file that can contain this data?</p> http://stackoverflow.com/questions/1735439/switch-statement-with-strings-c 2 Switch Statement with Strings C# Indebi 2009-11-14T20:09:06Z 2009-11-14T20:20:23Z <p>I need to write something that will get the start-up arguments and then do something for those start-up args, and I was thinking that switch would be good but it only accepts for ints and it has to be for a string</p> <p>This isn't the actual code but I want to know how to make something like this work</p> <pre><code>namespace Simtho { class Program { static void Main(string[] args) { switch (Environment.GetCommandLineArgs()) { case "-i": Console.WriteLine("Command Executed Successfully"); Console.Read; break; } } } } </code></pre> http://stackoverflow.com/questions/1420029/how-to-break-out-of-a-loop-from-inside-a-switch 9 How to break out of a loop from inside a switch? harshath.jr 2009-09-14T06:51:09Z 2009-11-12T09:06:38Z <p>Hi,</p> <p>I'm writing some code that looks like this:</p> <pre><code>while(true) { switch(msg-&gt;state) { case MSGTYPE: // ... break; // ... more stuff ... case DONE: break; // **HERE, I want to break out of the loop itself** } } </code></pre> <p>Is there any direct way to do that?</p> <p>I know I can use a flag, and break from the loop by putting a conditional break just after the switch. I just want to know if C++ has some construct for this already.</p> <p>Thanks,<br /> jrh</p> http://stackoverflow.com/questions/1711005/why-doesnt-c-switch-statement-allow-using-typeof-gettype 4 Why doesn't C# switch statement allow using typeof/GetType() ? Joan Venge 2009-11-10T20:34:58Z 2009-11-10T21:15:45Z <p>As in this example:</p> <pre><code>switch ( myObj.GetType ( ) ) { case typeof(MyObject): Console.WriteLine ( "MyObject is here" ); break; } </code></pre> http://stackoverflow.com/questions/1709894/c-switch-statement 5 C# switch statement JamesBrownIsDead 2009-11-10T17:55:15Z 2009-11-10T20:58:06Z <p>Should I throw NotImplementedException() on default: if I have cases for all possible enum types?</p> http://stackoverflow.com/questions/1692107/performance-difference-in-alternative-switches-in-python 3 Performance difference in alternative switches in Python. Chuck 2009-11-07T05:29:10Z 2009-11-07T06:44:28Z <p>I have read a few articles around alternatives to the switch statement in Python. Mainly using dicts instead of lots of if's and elif's. However none really answer the question: is there one with better performance or efficiency? I have read a few arguments that if's and elifs would have to check each statement and becomes inefficient with many ifs and elif's. However using dicts gets around that, but you end up having to create new modules to call which cancels the performance gain anyways. The only difference in the end being readability.</p> <p>Can anyone comment on this, is there really any difference in the long run? Does anyone regularly use the alternative? Only reason I ask is because I am going to end up having 30-40 elif/if's and possibly more in the future. Any input is appreciated. Thanks.</p> http://stackoverflow.com/questions/1664697/c-program-wont-quit-using-switch-case 0 C++ Program wont quit, using switch case Raptrex 2009-11-03T01:27:10Z 2009-11-03T01:29:19Z <p>I'm writing a tic tac toe program that plays throuh the terminal/console After Player 1 or 2 wins, I give the choice for the user to play again, 1 = play again, 2 to quit. However, entering 2 to quit doesnt work</p> <pre><code>//tie check, replay, use pointer notation #include &lt;iostream&gt; using namespace std; void initialize(char [][3]); void player1(char [][3]); void player2(char [][3]); void display(char [][3]); char check(char [3][3]); int main() { char board[3][3]; char end = '*'; int row1, column1, row2,column2; bool replay = true; //replay loop do { //set board to * initialize(board); //game loop display(board); do { //player 1 turn player1(board); //check if player 1 won end = check(board); if(end != '*') { int input; /* winner!*/ cout &lt;&lt; "Player 1 Won!\n"; do { cout &lt;&lt; "Play Again?\n1.Yes\n2.No\nEnter 1 or 2: "; cin &gt;&gt; input; if (input &gt; 2 || input &lt; 1) cout &lt;&lt; "Invalid Option\n"; }while(input &gt; 2 || input &lt; 1); switch (input) { case '1': replay = true; break; case '2': cout &lt;&lt; "Thank you for playing.\n"; exit(0); break; } } //player 2 turn player2(board); //check if player 2 won end = check(board); if (end == 'O') { int input; /* winner!*/ cout &lt;&lt; "Player 2 Won!\n"; do { cout &lt;&lt; "Play Again?\n1.Yes\n2.No\nEnter 1 or 2: "; cin &gt;&gt; input; if (input &gt; 2 || input &lt; 1) cout &lt;&lt; "Invalid Option\n"; }while(input &gt; 2 || input &lt; 1); switch (input) { case '1': replay = true; break; case '2': cout &lt;&lt; "Thank you for playing.\n"; exit(0); break; } } }while (end == '*'); }while (replay == true); return 0; } void initialize(char array[][3]) { for (int i = 0;i &lt; 3;i++) { for (int j = 0;j &lt; 3;j++) array[i][j] = '*'; } cout &lt;&lt; "New Game\n"; } void player1(char array[][3]) { int row1, column1; cout &lt;&lt; "Player 1\nRow: "; cin &gt;&gt; row1; while (row1 &lt; 0 || row1 &gt; 2) { cout &lt;&lt; "Enter a number between 0 and 2 for Row:: "; cin &gt;&gt; row1; } cout &lt;&lt; "Column: "; cin &gt;&gt; column1; while (column1 &lt; 0 || column1 &gt; 2) { cout &lt;&lt; "Enter a number between 0 and 2 for Column: "; cin &gt;&gt; column1; } if (array[row1][column1] == '*') array[row1][column1] = 'X'; else { cout &lt;&lt; "Space Occupied\n"; player1(array); } display(array); } void player2(char array[][3]) { int row2,column2; cout &lt;&lt; "Player 2\nRow: "; cin &gt;&gt; row2; while (row2 &lt; 0 || row2 &gt; 2) { cout &lt;&lt; "Enter a number between 0 and 2 for Row: "; cin &gt;&gt; row2; } cout &lt;&lt; "Column: "; cin &gt;&gt; column2; while (column2 &lt; 0 || column2 &gt; 2) { cout &lt;&lt; "Enter a number between 0 and 2 for Column: "; cin &gt;&gt; column2; } if (array[row2][column2] == '*') array[row2][column2] = 'O'; else { cout &lt;&lt; "Space Occupied\n"; player2(array); } display(array); } void display(char array[][3]) { for (int x = 0;x &lt; 3;x++) { for (int y = 0;y &lt; 3;y++) cout &lt;&lt; array[x][y] &lt;&lt; " "; cout &lt;&lt; endl; } } char check(char array[3][3]) { int i; /* check rows */ for(i=0; i&lt;3; i++) if(array[i][0] == array[i][1] &amp;&amp; array[i][0] == array[i][2]) return array[i][0]; /* check columns */ for(i=0; i&lt;3; i++) if(array[0][i] == array[1][i] &amp;&amp; array[0][i] == array[2][i]) return array[0][i]; /* test diagonals */ if(array[0][0] == array[1][1] &amp;&amp; array[1][1] == array[2][2]) return array[0][0]; if(array[0][2] == array[1][1] &amp;&amp; array[1][1] == array[2][0]) return array[0][2]; return '*'; } </code></pre> http://stackoverflow.com/questions/1653079/is-this-a-bad-pattern-switch-inside-for-foreach-loop 1 Is this a bad pattern? (Switch inside for/foreach loop) Magic Hat 2009-10-31T01:22:16Z 2009-10-31T15:39:17Z <p>I find myself writing code such as:</p> <pre><code>foreach($array as $key =&gt; $value) { switch($key) { case 'something': doSomething($value); break; case 'somethingelse': doSomethingElse($value); break; } } </code></pre> <p>Is there a better way to go about this? Seems dirty to me, but I might just be over thinking it. </p> <p>The only other alternative that I can think of is an if statement for each key, which doesn't seem any better. I.e. :</p> <pre><code>if($array[0] == 'something') { doSomething($array[0]); } if($array[1] == 'somethingelse') { doSomethingElse($array[1]); } </code></pre> <p>(or something like that) </p> <p>I can post exact code if needed, but this is the general outline of what happens. Please critique away, but remember that I'm looking for help here. So if I'm doing something egregiously wrong, then point it out.</p> http://stackoverflow.com/questions/1651790/iphone-switch-views-kill-problem 0 iPhone Switch views _KILL ! Problem Momeks 2009-10-30T19:17:51Z 2009-10-30T19:58:33Z <p>hi guys ... i have a problem with switch view between 2 views with nib files ! here my code . my first page goes to page 2 ! but at page 2 i cant back to first page ! my app go out .. here is my code :</p> <p>from page 1 to 2 :</p> <pre><code> #import "HafezViewController.h" #import "GhazaliateHafez.h" -(IBAction)gh:(id)sender { HafezViewController *ghPage = [[HafezViewController alloc] initWithNibName: @"GhazaliateHafez" bundle:nil]; [UIView beginAnimations:nil context:NULL]; [UIView setAnimationDuration:1.3]; [UIView setAnimationTransition:UIViewAnimationTransitionCurlDown forView:self.view cache:YES]; [self.view addSubview:ghPage.view]; [UIView commitAnimations]; } </code></pre> <p>^^^^^^^^^ this code works great ! but from page 2 to back :</p> <pre><code>#import "GhazaliateHafez.h" #import "HafezViewController.h" @implementation GhazaliateHafez -(IBAction)ghtoIndex:(id)sender { HafezViewController *back1 = [[HafezViewController alloc] initWithNibName:@"index" bundle:nil]; [UIView beginAnimations:nil context:NULL]; [UIView setAnimationDuration:1.5]; [UIView setAnimationTransition:UIViewAnimationTransitionCurlUp forView:self.view cache:YES]; [self.view addSubview:back1.view]; [UIView commitAnimations]; } </code></pre> <p>after i tap the back button my app go to crashing ... whats my problem ? thank you</p> http://stackoverflow.com/questions/1647278/need-to-create-a-summary-of-a-large-switch-statement-in-c 1 need to create a summary of a large switch statement in C# sniperX 2009-10-30T00:05:08Z 2009-10-30T03:29:11Z <p>Alright, i dont know how to explain it well.. but i have a switch statement,</p> <pre><code>string mystring = "hello"; switch(mystring) { case "hello": break; case "goodbye": break; case "example": break; } </code></pre> <p>of course this is an example, and in the real situation, there will be different things happening for each case. ok, hope you get the point, now, doing this manually is impossible, because of the sheer number of different case's. i need to respectively create a list, of all the cases, so for instance.. for the above switch statement, i would need </p> <pre><code>string[] list = { "hello", "goodbye", "example" }; </code></pre> <p>maybe could be done with a foreach some how i dont know, any help would be greatly appreciated.</p> <p>also, any working codes provided would be awesome!</p> <p>edit: people are asking for more detail, so here is how it works. the user of the program, inputs a series of strings. based on the string(s) they entered, it will do a few if's and else if's and throw back the new strings basically. i need to be able to be able to create a list, through the program, of all the options available to use. and i cant just make a list and hard code it in, because im always adding more case's to the statement, and i cant be going back and keeping a list up to date.</p> http://stackoverflow.com/questions/1640446/proper-perl-switch-formatting-in-emacs 2 Proper perl switch formatting in emacs vleeshue 2009-10-28T22:08:33Z 2009-10-29T05:18:33Z <p><strong>Edit:</strong> After reading the responses, I believe the answer is "don't do this", hence I marked an appropriate response as the official answer.</p> <p>Is there an easy way to get emacs to display perl switch statements like perldoc.perl.org's <a href="http://perldoc.perl.org/Switch.html" rel="nofollow">switch page</a>?</p> <p>Here's the formatting on perldoc.perl.org:</p> <pre><code>use Switch; switch ($val) { case 1 { print "number 1" } case "a" { print "string a" } case [1..10,42] { print "number in list" } case (\@array) { print "number in list" } case /\w+/ { print "pattern" } case qr/\w+/ { print "pattern" } case (\%hash) { print "entry in hash" } case (\&amp;sub) { print "arg to subroutine" } else { print "previous case not true" } } </code></pre> <p>Here's the formatting in <code>cperl-mode</code> after <code>M-x indent-region</code> is run on the snippet:</p> <pre><code>use Switch; switch ($val) { case 1 { print "number 1" } case "a" { print "string a" } case [1..10,42] { print "number in list" } case (\@array) { print "number in list" } case /\w+/ { print "pattern" } case qr/\w+/ { print "pattern" } case (\%hash) { print "entry in hash" } case (\&amp;sub) { print "arg to subroutine" } else { print "previous case not true" } } </code></pre> <p>I'm having an inexplicable urge to stick with if-elsif constructs...</p> <p>ps. I think <a href="http://cc-mode.sourceforge.net/html-manual/Customizing-Indentation.html#Customizing-Indentation" rel="nofollow">this</a> describes the desired process, but it looks like it'd take a while to parse.</p> http://stackoverflow.com/questions/1465018/switch-programming-language 1 Switch Programming Language Jimmy 2009-09-23T09:48:23Z 2009-10-19T17:28:53Z <p>I've forgotten how to switch programming languages in Visual Studio 2008. I need to switch from C++ to C#. Help!</p> http://stackoverflow.com/questions/1574826/when-if-is-best-over-switch-or-vice-versa 0 When IF is best over Switch or vice versa [closed] Vijjendra 2009-10-15T20:27:17Z 2009-10-15T21:22:04Z <blockquote> <p><strong>Possible Duplicate:</strong><br /> <a href="http://stackoverflow.com/questions/395618/if-else-vs-switch">If/Else vs. Switch</a> </p> </blockquote> <p>Hi All, I want to know when if statement is good over switch or vice versa.....</p> http://stackoverflow.com/questions/1564083/iphone-app-switching 1 iPhone app switching cduck 2009-10-14T03:22:43Z 2009-10-14T04:25:46Z <p>Is it possible to run an iPhone app from your own app? For example when you press a button in your app, the iPhone switches to another app. If so, how would you do this?</p> http://stackoverflow.com/questions/1554689/evaluate-expressions-in-switch-statements-in-c 0 Evaluate Expressions in Switch Statements in C# pewned 2009-10-12T13:48:15Z 2009-10-12T14:29:40Z <p>I have to implement the following in a <code>switch</code> statement:</p> <pre><code>switch(num) { case 4: // some code ; break; case 3: // some code ; break; case 0: // some code ; break; case &lt; 0: // some code ; break; } </code></pre> <p>Is it possible to have the switch statement evaluate <code>case &lt; 0</code>? If not, how could I do that?</p> http://stackoverflow.com/questions/1475037/switching-branches-in-git 1 Switching branches in git Bill 2009-09-25T01:42:06Z 2009-09-25T02:09:00Z <p>Sometimes I'm in a feature branch, but I've made an unrelated change that I want to see in master. Often I can just do:</p> <pre><code>git checkout master git commit -m "..." filename </code></pre> <p>But sometimes when I do the checkout I get a warning that there are local changes and thus I can't switch the branch.</p> <p>Why does this only happen sometimes? Is there a workaround when I see this message? Maybe stash?</p> http://stackoverflow.com/questions/1455416/what-is-the-standard-approach-for-implementing-a-one-time-boolean-switch 0 What is the standard approach for implementing a one-time Boolean switch? Dan 2009-09-21T16:24:05Z 2009-09-22T20:43:13Z <p>Let's say I have some code like the following, and that <code>processData</code> gets executed hundreds or even thousands of times per minute:</p> <pre><code>class DataProcessor { private: DataValidator* validator; bool atLeastOneDataPoint; bool dataIsValid(Data* dataToValidate) { return validator-&gt;validate(dataToValidate); } public: // ... void processData(Data* dataToProcess) { if (dataIsValid(dataToProcess) || !atLeastOneDataPoint) { // process data // ... atLeastOneDataPoint = true; } } // ... } </code></pre> <p>As can be inferred from its name, <code>atLeastOneDataPoint</code> is a variable that really only needs to get set once, yet in the code above it is set every single time <code>processData</code> is called after the first data point. Naturally, I could change the assignment line to this:</p> <pre><code>if (!atLeastOneDataPoint) atLeastOneDataPoint = true; </code></pre> <p>But that would simply replace a bunch of unnecessary assignments with a bunch of unnecessary Boolean checks.</p> <p>I'm not concerned about the performance of this code; really I'm just bothered by the idea of doing something so totally unnecessary. Is there a standard way of setting one-time switches such as this, that is more intuitively "proper" in design?</p> <p>As for whether or not even caring about this makes me a bad programmer: let's leave that discussion for another day, please.</p> http://stackoverflow.com/questions/1435012/switch-statement-in-jquery-and-list 0 switch statement in Jquery and List Pennf0lio 2009-09-16T19:30:24Z 2009-09-16T20:02:11Z <p>Hi,</p> <p>I would like to know if my approach is efficient and correct. my code is not working though, I don't know why.</p> <pre><code>&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt; &lt;html xmlns="http://www.w3.org/1999/xhtml"&gt; &lt;head&gt; &lt;meta http-equiv="Content-Type" content="text/html; charset=utf-8" /&gt; &lt;script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js" type="text/javascript" charset="utf-8"&gt;&lt;/script&gt; &lt;script type="text/javascript"&gt; $(document).ready(function() { function HotelQuery(HotelName) { switch (HotelName) { case 'TimelessHotel': var strHotelName = 'Timeless Hotel'; var strHotelDesc = 'Hotel Description Timeless Hotel'; var strHotelPrice = ['980.00', '1,300.00', '1,600.00', '1,500.00', '1,800.00', '300.00', '150.00', '200.00']; var strHotelRoomType = ['Single Room', 'Delux Room','Twin Room', 'Matrimonial Room', 'Presidential Suites', 'Extra Bed', 'Free Breakfast', 'Extra Person']; ; //end Timeless Hotel case 'ParadiseInn': var strHotelName = 'Paradise Inn'; var strHotelDesc = 'Hotel Description Paradise Inn'; var strHotelPrice = ['980.00', '1,300.00', '1,600.00', '1,500.00', '1,800.00', '300.00', '150.00', '200.00']; var strHotelRoomType = ['Single Room', 'Delux Room','Twin Room', 'Matrimonial Room', 'Presidential Suites', 'Extra Bed', 'Free Breakfast', 'Extra Person']; ; //end Paradise Inn case 'TetrisHotel': var strHotelName = 'Tetris Hotel'; var strHotelDesc = 'Hotel Description Tetris Hotel'; var strHotelPrice = ['980.00', '1,300.00', '1,600.00', '1,500.00', '1,800.00', '300.00', '150.00', '200.00']; var strHotelRoomType = ['Single Room', 'Delux Room','Twin Room', 'Matrimonial Room', 'Presidential Suites', 'Extra Bed', 'Free Breakfast', 'Extra Person']; ; //end Tetris Hotel case 'JamstoneInn': var strHotelName = 'Jamstone Inn'; var strHotelDesc = 'Hotel Description Jamstone Inn'; var strHotelPrice = ['980.00', '1,300.00', '1,600.00', '1,500.00', '1,800.00', '300.00', '150.00', '200.00']; var strHotelRoomType = ['Single Room', 'Delux Room','Twin Room', 'Matrimonial Room', 'Presidential Suites', 'Extra Bed', 'Free Breakfast', 'Extra Person']; ; //end Jamstone Inn } }; }); &lt;/script&gt; &lt;title&gt;hotel query&lt;/title&gt; &lt;/head&gt; &lt;body&gt; &lt;a href="#" onclick="javascript: HotelQuery('TetrisHotel'); alert: (strHotelName, strHotelDesc, strHotelPrice);"&gt;Tetris Hotel Query&lt;/a&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> http://stackoverflow.com/questions/1385827/jquery-image-switch 1 Jquery Image Switch Anthony 2009-09-06T14:47:51Z 2009-09-06T16:36:39Z <p>Hey guys,</p> <p>I am using an image switch function in Jquery for a site I am building. There are a ton of projects so I am heavily compressing a lot of these images. Some of them however dont look nice as .gifs and it really only makes sense to make a .jpg.</p> <p>My problem is that this code only swaps one image, to another image of a different name but similar prefix. Is there a way to swap just the name of the file, so that if I have a .gif, or .jpg, it wouldn't matter as it would just be swapping the name from _static to _rollover?</p> <p>Here is the code I am using:</p> <pre><code>//Image Switch $(document).ready(function(){ $(".projectThumb img").hover( function(){ var iconName = $(this).attr("src"); var origin = iconName.split("_static.")[0]; $(this).attr({src: "" + origin + "_rollover.gif"}); }, function(){ var iconName = $(this).attr("src"); var origin = iconName.split("_rollover.")[0]; $(this).attr({src: "" + origin + "_static.gif"}); }); }); </code></pre> <p>and the HTML for the image switch</p> <pre><code>&lt;div class="projectThumb"&gt; &lt;img src="/img/mr_button_static.gif" class="button" name="mr"&gt; &lt;p class="title"&gt;Title &amp;ndash; Poster&lt;/p&gt; &lt;/div&gt; </code></pre> <p>The image to be switched is named <code>/img/mr_button_rollover.jpg</code> </p> <p>Thanks!</p> http://stackoverflow.com/questions/1383677/php-two-values-in-the-case-of-switch 1 PHP: two values in the case of Switch? Heoa 2009-09-05T16:09:39Z 2009-09-05T16:35:05Z <p>If "car" or "ferrari" as an input, it should print "car or ferrari". How can I achieve it?</p> <pre><code>&lt;?php $car ='333'; switch($car) { case car OR ferrari: print("car or ferrari"); break; case cat: print("cat"); break; default: print("default"); break; } ?&gt; </code></pre> http://stackoverflow.com/questions/1365988/switchable-unique-identifier-in-c 1 Switchable Unique Identifier in C# Damian Lanningham 2009-09-02T05:38:34Z 2009-09-02T09:56:43Z <p>I'm implementing a system to send Messages between different parts of a program I'm writing. There are some generic message types as well as some specific to each part of the program. I would like to avoid the hierarchy rot inherent in deriving from a base message class for each type, So i'm encapsulating this type in an int or ushort. Then, I centralize the different types with a "Messages" namespace, and a static class with a bunch of constants. However, I ran into the issue of having to maintain a list of unique numbers for each different section:</p> <pre><code>namespace Messages { public static class Generic { public const Int32 Unknown = 0; public const Int32 Initialize = 1; ... public const Int32 Destroy = 10; } } </code></pre> <p>Then elsewhere</p> <pre><code>namespace Messages { public static class Graphics { public const Int32 Unknown = 0; public const Int32 AddGraphic = 11; // &lt;-- ? } } </code></pre> <p>Having that arbitrary 11 seems difficult, especially if I have several of these, maintaining and updating to make sure there are no collisions seems to be a pain. Is there an easy solution in order to make sure each reference to this is unique? I tried using static readonly, initializing them off of a Unique.ID() function in a static constructor, but if I do that I am unable to switch() over the passed Message type, as it says "A constant type is expected" for each case.</p> http://stackoverflow.com/questions/1361197/c-iterate-over-switchs-cases 1 C# iterate over switch's cases Toto 2009-09-01T08:16:12Z 2009-09-01T08:52:03Z <p>Hello,</p> <p>Is it possible to retrieve programmatically all the case of a switch ? I don't have any idea, maybe by IL but not sure how to do ...</p> <p>In fact my global issue is the following : I got a siwtch case with string as property name. The method is very important and a regression is not allowed. I don't want a refactoring breaking this, so I want a method to test that all case string are in fact real properties of my objects. (NB : the default value return something so I can't throw an exceptino for a refactored invalid value).</p> http://stackoverflow.com/questions/1334087/net-switch-vs-dictionary-for-string-keys 3 .NET: switch vs dictionary for string keys Vilx- 2009-08-26T11:34:17Z 2009-08-26T16:50:46Z <p>I've got a situation where I have a business object with about 15 properties of different types. The business object also has to implement an interface which has the following method:</p> <pre><code>object GetFieldValue(string FieldName); </code></pre> <p>I can see 2 ways of implementing this method:</p> <p>Use a switch statement:</p> <pre><code>switch ( FieldName ) { case "Field1": return this.Field1; case "Field2": return this.Field2; // etc. } </code></pre> <p>Use a dictionary (SortedDictionary or HashTable?):</p> <pre><code>return this.AllFields[FieldName]; </code></pre> <p>Which would be more efficient?</p> <p><strong>Added:</strong> Forgot to say. This method is for displaying the item in a grid. The grid will have a column for each of these properties. There will routinely be grids with a bit over 1000 items in them. That's why I'm concerned about performance.</p> <p><strong>Added 2:</strong></p> <p>Here's an idea: a hybrid approach. Make a static dictionary with keys being property names and values being indices in array. The dictionary is filled only once, at the startup of the application. Every object instance has an array. So, the lookup would be like:</p> <pre><code>return this.ValueArray[StaticDictionary[FieldName]]; </code></pre> <p>The dictionary filling algorithm can use reflection. The properties itself will then be implemented accordingly:</p> <pre><code>public bool Field1 { get { object o = this.ValueArray[StaticDictionary["Field1"]]; return o == null ? false : (bool)o; } set { this.ValueArray[StaticDictionary["Field1"]] = value; } } </code></pre> <p>Can anyone see any problems with this?</p> <p>It can also be taken one step further and the ValueArray/StaticDictionary can be placed in a separate generic type <code>ValueCollection&lt;T&gt;</code>, where <code>T</code> would specify the type for reflection. ValueCollection will also handle the case when no value has been set yet. Properties could then be written simply as:</p> <pre><code>public bool Field1 { get { return (bool)this.Values["Field1"]; } set { this.Values["Field1"] = value; } } </code></pre> <p>And in the end, I'm starting to wonder again, if a simple switch statement might not be both faster and easier to maintain....</p> http://stackoverflow.com/questions/1288711/break-tag-inside-of-a-method 1 Break tag inside of a method zachary 2009-08-17T15:46:45Z 2009-08-17T16:05:52Z <p>I have a switch statement that executes some logic over and over. Rather then use cut and paste I wanted to put it into a function, but I am failing badly at this.</p> <p>This is what I want to do, but it does not compile because the break tag in the function does not exist. Can anyone refactor this to a better working version?</p> <pre><code>switch(param.ToString()) { case "1": BreakIfNotArgumentType&lt;B&gt;(param); //do stuff break; case "2": BreakIfNotArgumentType&lt;BF&gt;(param); //do stuff break; } private T BreakIfNotArgumentType&lt;T&gt;(object argumentObject) { if (argumentObject is T) { return (T)argumentObject; } else { break; } } </code></pre>