9
votes
12answers
793 views
How to break out of a loop from inside a switch?
Hi,
I'm writing some code that looks like this:
while(true) {
switch(msg->state) {
case MSGTYPE: // ...
break;
// ... more stuff ...
case DONE:
break; // **HERE, …
5
votes
11answers
306 views
C# switch statement
Should I throw NotImplementedException() on default: if I have cases for all possible enum types?
4
votes
8answers
310 views
Why doesn’t C# switch statement allow using typeof/GetType() ?
As in this example:
switch ( myObj.GetType ( ) )
{
case typeof(MyObject):
Console.WriteLine ( "MyObject is here" );
break;
}
4
votes
5answers
480 views
Why do I need to use break?
I was wondering why C# requires me to use break in a switch statement although a fall-through semantics is by definition not allowed. hence, the compiler could generate the break at the end of each …
3
votes
9answers
213 views
C# Switch Statement refactoring
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
Is there a better way? If-Else …
3
votes
5answers
129 views
Performance difference in alternative switches in Python.
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 …
3
votes
5answers
155 views
.NET: switch vs dictionary for string keys
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:
object …
2
votes
2answers
63 views
What is the overhead involved in a mode switch
Hi
Many a times i read/hear the argument that making a lot of system calls etc would be inefficient since the application make a mode switch i.e goes from user mode to kernel mode and after executing …
2
votes
11answers
276 views
Code smell in this switch statement?
I'm wondering where a switch statement of this style should be changed to an if else statement.
switch (foo) // foo is an enumerated type
{
case barOne:
if (blahOne)
{
…
2
votes
4answers
155 views
Switch Statement with Strings C#
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 …
2
votes
2answers
99 views
Proper perl switch formatting in emacs
Edit: After reading the responses, I believe the answer is "don't do this", hence I marked an appropriate response as the official answer.
Is there an easy way to get emacs to display perl switch …
1
vote
4answers
96 views
Status “S” in Subversion
At some point all files in my working copy got marked with "S" symbol as shown below:
$ svn st
M S AclController.php
S InstallationController.php
S CustomerController.php
S …
1
vote
3answers
98 views
C# switch/break
It appears I need to use a break in each case block in my switch statement using C#.
I can see the reason for this in other languages where you can fall through to the next case statement.
Is it …
1
vote
5answers
214 views
What is the best way to write a C# application “kill switch”?
I need to write a "kill switch" into my C# application for licensing/billing purposes. What is the best way to do that?
The requirements are as follows (its actually 2 kill switches):
1 - "passive …
1
vote
6answers
174 views
Is this a bad pattern? (Switch inside for/foreach loop)
I find myself writing code such as:
foreach($array as $key => $value) {
switch($key) {
case 'something':
doSomething($value);
break;
case …
