Tagged Questions

A data type that has a small, fixed number of values.

learn more… | top users | synonyms

289
votes
11answers
77k views

C#: How to enumerate an enum?

How can you enumerate a enum in C#? e.g. the following does not compile: public enum Suit { Spades, Hearts, Clubs, Diamonds } public void EnumerateAllSuitsDemoMethod() { foreach (Suit suit in ...
135
votes
14answers
44k views

PHP and Enums

I know that PHP doesn't have native Enumerations. But I have become accustomed to them from the Java world. I would love to use enums as a way to give predefined values which IDEs' auto completion ...
82
votes
24answers
3k views

Are booleans as method arguments unacceptable?

A colleague of mine states that booleans as method arguments are not acceptable. They shall be replaced by enumerations. At first I did not see any benefit, but he gave me an example. What's easier ...
68
votes
9answers
59k views

C# loop - break vs. continue

In a C# (feel free to answer for other languages) loop, what's the difference between break and continue as a means to leave the structure of the loop, and go to the next iteration? Example: ...
47
votes
3answers
48k views

How do I iterate over an NSArray?

I'm looking for the standard idiom to iterate over an NSArray. My code needs to be suitable for OS X 10.4+.
46
votes
7answers
7k views

What is the tilde (~) in a C# enumeration?

I'm always surprised that even after using C# for all this time now, I still manage to find things I didn't know about... I've tried searching the internet for this, but using the "~" in a search ...
40
votes
7answers
3k views

C# - The foreach identifier and closures

In the two following snippets, is the first one safe or must you do the second one? By safe I mean is each thread guaranteed to call the method on the Foo from the same loop iteration in which the ...
35
votes
8answers
7k views

Case classes vs Enumerations in Scala

I was wondering if there are any best practice guidelines on when to use case classes vs extending Enumeration in Scala. They seem to offer some of the same benefits.
26
votes
6answers
19k views

for each loop in objective c for accessing NSMutable dictionary

I am finding some difficulty in accessing mutable dictionary keys and values in Objective-C. Suppose I have this: NSMutableDictionary *xyz=[[NSMutableDictionary alloc] init]; I can set keys and ...
23
votes
13answers
2k views

foreach vs someList.Foreach(){}

There are apparently many ways to iterate over a collection. Curious if there are any differences, or why you'd use one way over the other. First type: List<string> someList = <some way to ...
20
votes
9answers
8k views

Which Typesafe Enum in C++ Are You Using?

It is common knowledge that built-in enums in C++ are not typesafe. I was wondering which classes implementing typesafe enums are used out there... I myself use the following "bicycle", but it is ...
16
votes
10answers
7k views

Is there a predefined enumeration for Month in the .NET library?

I'm looking to see if there is an official enumeration for months in the .net framework. It seems possible to me that there is one, because of how common the use of month is, and because there are ...
16
votes
4answers
8k views

What is the best way to handle constants in Ruby when using Rails?

I have some constants that represent the valid options in one of my model's fields. What's the best way to handle these constants in Ruby?
16
votes
6answers
13k views

How to convert string result of enum with overridden toString() back to enum?

Given the following java enum: public enum AgeRange { A18TO23 { public String toString() { return "18 - 23"; } }, A24TO29 { public String toString() { ...
15
votes
5answers
382 views

How to handle an “infinite” IEnumerable?

A trivial example of an "infinite" IEnumerable would be IEnumerable<int> Numbers() { int i=0; while(true) { yield return unchecked(i++); } } I know, that foreach(int i in ...
15
votes
14answers
7k views

Enumerate or list all variables in a program of [your favorite language here]

A friend asked me last week how to enumerate or list all variables within a program/function/etc. for the purposes of debugging (essentially getting a snapshot of everything so you can see what ...
15
votes
15answers
3k views

eliminating duplicate Enum code

I have a large number of Enums that implement this interface: /** * Interface for an enumeration, each element of which can be uniquely identified by it's code */ public interface CodableEnum { ...
15
votes
5answers
4k views

Why aren't Enumerations Iterable?

In Java 5 and above you have the foreach loop, which works magically on anything that implements Iterable: for (Object o : list) { doStuff(o); } However, Enumerable still does not implement ...
14
votes
1answer
301 views

Strange thing about .NET 4.0 filesystem enumeration functionality

I just read a page of "Whats new .NET Framework 4.0". I have trouble understanding the last paragraph: To remove open handles on enumerated directories or files Create a custom method (or ...
13
votes
7answers
3k views

Distinction between iterator and enumerator

An interview question for a .NET 3.5 job is "What is the difference between an iterator and an enumerator"? This is a core distinction to make, what with LINQ, etc. Anyway, what is the difference? I ...
12
votes
7answers
2k views

Why cant we change Values of a dictionary while enumerating its keys?

class Program { static void Main(string[] args) { var dictionary = new Dictionary<string, int>() { {"1", 1}, {"2", 2}, {"3", 3} ...
11
votes
1answer
214 views

Enumerations and pointer-to-members

I recently attempted to create an is_class class and needed a way for the compiler to differentiate between enumeration types and class types for which conversion operators are defined. Seeing as how ...
11
votes
9answers
3k views

Is there a way to iterate through all enum values? [closed]

Possible Duplicate: C#: How to enumerate an enum? The subject says all. I want to use that to add the values of an enum in a combobox. Thanks vIceBerg
10
votes
5answers
342 views

A way to parse .NET enum string or int value attributed with 'Flags'

There is a nice way of figuring out the enumeration element using the following approach: // memberType is enum type if (Enum.IsDefined(memberType, valueString)) { return Enum.Parse(memberType, ...
10
votes
5answers
830 views

What is thread safe (C#) ? (Strings, arrays, … ?)

I'm quite new to C# so please bear with me. I'm a bit confused with the thread safety. When is something thread safe and when something isn't? Is reading (just reading from something that was ...
10
votes
6answers
1k views

Delphi 2010 RTTI : Explore Enumerations

Considering such an enumeration : type TTypeOfData = ( [XmlName('ABC')] todABC, [XmlName('DEF')] todDEF, [XmlName('GHI')] todGHI ); Where XmlName is a custom attribute used to ...
10
votes
7answers
3k views

Enumerate over an enum in C++

In C++, Is it possible to enumerate over an enum (either runtime or compile time (preferred)) and call functions/generate code for each iteration? Sample use case: enum abc { start a, ...
10
votes
8answers
3k views

Lookup Tables Best Practices: DB Tables… or Enumerations

If we have to store the available positions at a company (i.e. Manager, Team Lead, ... etc). What are the best practices for storing it? I have two opinions with comments... "sure, welcoming yours" ...
10
votes
5answers
9k views

Enumeration extension methods

In vs2008, is it possible to write an extension methods which would apply to any enumeration. I know you can write extension methods against a specific enumeration, but I want to be able to every ...
9
votes
3answers
3k views

(How) can I count the items in an enum?

This question came to my mind, when I had something like enum Folders {FA, FB, FC}; and wanted to create an array of containers for each folder: ContainerClass*m_containers[3]; .... ...
9
votes
4answers
3k views

different using. java.util.Enumeration and Iterator

what is the exact different of both.. is using enumeration more benefit than using iterator..? can anyone elaborate.. any reference article would be appeciated
9
votes
7answers
6k views

How to use std::foreach with parameters/modification

I've found myself writing for(int i=0;i<myvec.size();i++) myvec[i]->DoWhatever(param); a lot, and I'd like to compress this into a foreach statement, but I'm not sure how to get param in ...
8
votes
2answers
156 views

Organizing enumerations in Scala

sorry for the long winded question: Say I have a list of animals and I want to split them up like so: BasicAnimal = {Cat, Dog} Carnivore = {Cat, Dog, Dragon} Herbivore = {Cat, Dog, Horse} Now, ...
8
votes
4answers
935 views

C++ - enum vs. const vs. #define

At the end of the article here: http://www.learncpp.com/cpp-tutorial/45-enumerated-types/, it mentions the following: Finally, as with constant variables, enumerated types show up in the debugger, ...
8
votes
12answers
2k views

Why do people use enums in C++ as constants while they can use const?

Why do people use enums in C++ as constants when they can use const?
8
votes
7answers
3k views

What is the best way to modify a list in a foreach?

a new feature in C# / .NET 4.0 is that you can change your enumerable in a foreach without getting the exception. See Paul Jackson's blog for info on this change. So I'm asking: what is the best way ...
8
votes
5answers
2k views

How can I use C# style enumerations in Ruby?

I just want to know the best way to emulate a C# style enumeration in Ruby.
7
votes
4answers
121 views

how do I write a generic Java enum rotator?

How do I make a generic enum rotator? It would be a generic version of next() in this example. public class TestEnum { enum Temperature { hot, cold }; public static void ...
7
votes
3answers
479 views

Objective C — What is the fastest and most efficient way to enumerate an array?

Edit I read through some articles on blocks and fast enumeration and GCD and the like. @Bbum, who's written many articles on the subject of GCD and blocks, says that the block enumeration methods are ...
7
votes
7answers
1k views

Collection was modified; enumeration operation may not execute - why?

I'm enumerating over a collection that implements IList, and during the enumeration I am modifying the collection. I get the error, "Collection was modified; enumeration operation may not execute." ...
7
votes
6answers
479 views

“if” statement vs OO Design

I have enum say ErrorCodes that public enum ErrorCodes { INVALID_LOGIN(100), INVALID_PASSWORD(101), SESSION_EXPIRED(102) ...; private int errorCode; private ...
7
votes
2answers
1k views

Overriding Scala Enumeration Value

As far as I can tell, Scala has definitions for the Enumeration Value class for Value(Int), Value(String), and Value(Int, String). Does anyone know of an example for creating a new Value subclass to ...
7
votes
9answers
943 views

Search for a string in Enum and return the Enum

I have an enumerator: public enum MyColours { Red, Green, Blue, Yellow, Fuchsia, Aqua, Orange } and i have a string: string colour = "Red"; I want to be able to ...
6
votes
3answers
128 views

how to update the values while iterating dictionary items?

I have a dictionary: Dictionary<string, long> Reps = new Dictionary<string, long>(); and I want to update the values while iterating through all items, like this: foreach (string key ...
6
votes
2answers
223 views

When is the Enumerator::Yielder#yield method useful?

This question mentions the Enumerator::Yielder#yield method. I haven't used it before, and I'm wondering under what circumstances it would be useful. Is it mainly useful when you want to create an ...
6
votes
4answers
345 views

Representing heirarchical enumeration

I have a set of enumeration values (fault codes to be precise). The code is a 16 bit unsigned integer. I am looking for a data structure that could represent such an enumeration. A similar question ...
6
votes
7answers
510 views

How to add a method to Enumeration in Scala?

In Java you could: public enum Enum { ONE { public String method() { return "1"; } }, TWO { public String method() { return "2"; } ...
6
votes
4answers
505 views

Random enumeration of a hash table in OCaml

Sorry for the long question. I decided to explain the context of the problem first as maybe there are other solutions to my problem. If you're in a hurry, just read THE QUESTION below. (EDITED -- In ...
6
votes
3answers
837 views

.Net enumerate winforms font styles?

I have been searching around for a way to list the valid font styles for a given font using the .Net framework (even if I have to pinvoke gdi32 or some other API) since not all fonts fall into the ...
6
votes
5answers
591 views

How to enumerate returned rows in SQL?

I was wondering if it would be possible to enumerate returned rows. Not according to any column content but just yielding a sequential integer index. E.g. select ?, count(*) as usercount from users ...

1 2 3 4 5 9