Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

67
votes
12answers
16k views

Enum Flags Attribute

Anyone have a good explanation or example they could post? Edit: I changed the answer, this one is more in depth.
53
votes
8answers
34k views

Most common C# bitwise operations

For the life of me, I can't remember how to set, delete, toggle or test a bit in a bitfield. Either I'm unsure or I mix them up because I rarely need these. So a "bit-cheat-sheet" would be nice to ...
39
votes
11answers
15k views

How to Compare Flags in C#?

I have a flag enum below. [Flags] public enum FlagTest { None = 0x0, Flag1 = 0x1, Flag2 = 0x2, Flag3 = 0x4 } I cannot make the if statement evaluate to true. FlagTest testItem = ...
28
votes
9answers
5k views

Anyone know a good workaround for the lack of an enum generic constraint?

What I want to do is something like this: I have enums with combined flagged values. public static class EnumExtension { public static bool IsSet<T>( this T input, T matchTo ) ...
18
votes
6answers
371 views

What Does the [Flags] Attribute Really Do?

What does applying [Flags] really do? I know it modifies the behavior of Enum.ToString, but does it do anything else? (e.g. Different compiler or runtime behavior, etc.) Edit: Yeah, I'm aware that ...
15
votes
8answers
3k views

Flags in a database rows, best practices

I am asking this out of a curiosity. Basically my question is when you have a database which needs a row entry to have things which act like flags, what is the best practice? A good example of this ...
14
votes
9answers
5k views

C#: How to check if any flags of a flag combination are set

Let's say I have this enum: [Flags] enum Letters { A = 1, B = 2, C = 4, AB = A | B, All = A | B | C, } To check if for example AB is set I can do this: if((letter & ...
13
votes
3answers
649 views

Activity stack ordering problem when launching application from Android app installer and from Home screen

For testing purposes only, I am allowing my app APK to be downloaded and installed via a URL. Once downloaded on the phone, it can be launched with the Android app installer which gives the user an ...
10
votes
10answers
2k views

Why use flags+bitmasks rather than a series of booleans?

Given a case where I have an object that may be in one or more true/false states, I've always been a little fuzzy on why programmers frequently use flags+bitmasks instead of just using several boolean ...
9
votes
4answers
612 views

Perl flags -pe, -pi, -p, -w, -d, -i, -t?

I have seen lots of ways of running perl code or scripts, with different flags. However, when I try to google for what each flag means, I mainly get results to generic perl sites and no specific info ...
9
votes
4answers
315 views

How to get complex enum value string representation

Let's say I have this enum: [Flags] public enum SomeType { Val1 = 0, Val2 = 1, Val3 = 2, Val4 = 4, Val5 = 8, Val6 = 16, All = Val1 | Val2 | Val3 | Val4 | Val5 | Val6 } ...
8
votes
3answers
764 views

C# Enums with Flags Attribute

I was wondering if Enums with Flag attribute are mostly used for Bitwise operations why not the compilers autogenerate the values if the enum values as not defined. For eg. [Flags] public enum ...
8
votes
8answers
6k views

Comparing enum flags in C#

I need to detect if a flag is set within an enum value, which type is marked with the Flag attribute. Usually it is made like that: (value & flag) == flag But since I need to do this by ...
8
votes
4answers
3k views

Switch on Enum (with Flags attribute) without declaring every possible combination?

how do i switch on an enum which have the flags attribute set (or more precisly is used for bit operations) ? I want to be able to hit all cases in a switch that matches the values declared. The ...
7
votes
3answers
241 views

Is there a way to filter output in Google Chrome's console?

I'm getting a lot of noise from the output of the 3rd party's page i'm currently playing with and i wonder if there's a way to filter the output on the console. Something like Logcat's flags. Is there ...
7
votes
9answers
196 views

Are there any techniques to split a method with a flag argument?

I have a method with a flag argument. I think that passing a boolean to a method is a bad practice (complicates the signature, violates the "each method does one thing" principle). I think splitting ...
7
votes
2answers
273 views

Flags Enum attribute

What is the point of the [Flags] attribute you can bit test without it?
7
votes
7answers
2k views

object editing and isDirty() flag

I'm working on a system were a user can edit existing objects ("Filter" domain objects to be exact) through a GUI. As a UI hint, we only want to enable the save button if the user really modified ...
6
votes
4answers
281 views

Java integer flag and bitwise operations for memory reduction

Is using an integer flag and bitwise operations an effective way of reducing the memory footprint of high volume Objects? Memory Footprint It is my understanding that commonly a boolean is stored ...
6
votes
3answers
114 views

Changing the RegExp flags

So basically I wrote myself this function so as to be able to count the number of occurances of a Substring in a String: String.prototype.numberOf = function(needle) { var num = 0, lastIndex ...
6
votes
7answers
7k views

about assembly CF(Carry) and OF(Overflow) flag

It's known that CF indicates unsigned carry out and OF indicates signed overflow. So how does an assembly program differentiate between unsigned and signed data since it's only a sequence of bits? ...
5
votes
4answers
454 views

Enum.HasFlag, why no Enum.SetFlag?

I have to build an extension method for each flag type I declare, like so: public static EventMessageScope SetFlag(this EventMessageScope flags, EventMessageScope flag, bool value) { if ...
5
votes
2answers
161 views

Why does Java use -D to indicate system properties?

Why is the flag that indicates a System property in Java -D? Surely there is some semantics to this letter choice, but I can't guess what it is.
5
votes
4answers
329 views

Negative flags in C#

Hey, is there any way to store negative flags in C#? For example I have the following flags enum that represents some styles: [Flags] public enum Styles { Default = 0, Bold = 1, Italic = ...
5
votes
3answers
252 views

Private value in C# flags enumeration

I'm creating a flags enumeration in C#, similar to the following: [Flags] public enum DriversLicenseFlags { None = 0, Suspended = 1 << 1, Revoked = 1 ...
5
votes
3answers
1k views

how can I remove a flag in C?

There is a variable that holds some flags and I want to remove one of them. But I don't know how to remove it. Here is how I set the flag. my.emask |= ENABLE_SHOOT;
5
votes
1answer
489 views

GCC option that can cause trouble when debugging with GDB

I was wondering if I can get a list of gcc option that can cause gdb to behave strange. Of course, we all know that using optimization options (-O3 for instance) causes weird behaviour in gdb, but ...
5
votes
5answers
1k views

Storing EnumSet in a database?

So in C++/C# you can create flags enums to hold multiple values, and storing a single meaningful integer in the database is, of course, trivial. In Java you have EnumSets, which appear to be quite a ...
5
votes
5answers
559 views

How do I use low-level 8 bit flags as conditionals?

In my keyboard hook, each keypress gets a flag that states if it was injected or not. http://msdn.microsoft.com/en-us/library/ms644967(VS.85).aspx I've distilled a KBDLLHOOKSTRUCT from the lParam. I ...
5
votes
7answers
3k views

Best practices for bit flags in PHP

I'm writng a small application in PHP + MySQL and have come to the point where there is an object that has a couple (8 so far but not expected to increase) of flags associated with it. The flags are ...
4
votes
3answers
297 views

Read flag register

For the sake of curiosity I'm trying to read the flag register and print it out in a nice way. I've tried reading it using gcc's asm keyword, but i can't get it to work. Any hints how to do it? I'm ...
4
votes
1answer
129 views

understand -XX java flag

starting my java app with the following command line : java -XX:+PrintCommandLineFlags -verbose:gc -XX:+PrintGCDetails -XX:+UseConcMarkSweepGC -jar start.jar the JVM enables the following options : ...
4
votes
1answer
957 views

Disable keep screen on

I used: getWindow().addFlags(android.view.WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON); How do I resume to Default state (no-keep-on)?
4
votes
1answer
133 views

Perl “-C” flag question

Why doesn't the "-C" flag have an option to enable the "use utf8"-pragma?
4
votes
3answers
711 views

Large flags enumerations in C#

Hey everyone, got a quick question that I can't seem to find anything about... I'm working on a project that requires flag enumerations with a large number of flags (up to 40-ish), and I don't really ...
4
votes
4answers
229 views

How do I automatically reset a boolean when any method other is called in C#?

Using C#, I need to do some extra work if function A() was called right before function C(). If any other function was called in between A() and C() then I don't want to do that extra work. Any ideas ...
4
votes
3answers
683 views

Multiple ways to define C# Enums with [Flags] attribute?

I understand how Enums work in C#, and I get what the Flags attribute brings to the table. I saw this question, here. Which recommends the first flavor, but doesn't provide any reason/justification ...
4
votes
3answers
358 views

How to Compare Flags in C#? (part 2)

Bit flags are a little difficult to understand :) I know about this and this questions and I do understand the answers and I even followed this article from a good friend of mine. But I still cant ...
4
votes
8answers
2k views

Efficient way to find the flags enum length?

Consider this: [Flags] enum Colors { Red=1, Green=2, Blue=4 } Colors myColor=Colors.Red|Colors.Blue; Currently, I'm doing it as follows: int length=myColors.ToString().Split(new ...
4
votes
6answers
2k views

Flags in Python

I'm working with a large matrix (250x250x30 = 1,875,000 cells), and I'd like a way to set an arbitrary number of flags for each cell in this matrix, in some manner that's easy to use and reasonably ...
4
votes
13answers
501 views

Is using flags very often in code advisable?

I came across lot of flags while reading someone else code, if (condition1) var1 = true else var1 = false then later, if (var1 == true) // do something. There are lot of flags like ...
4
votes
6answers
1k views

Flags with web services

I have a flag attribute enumeration that is behind a web service as follows: [Serializable,Flags] public enum AccessLevels { None = 0, Read = 1, Write = 2, Full = Read | Write } My ...
3
votes
2answers
76 views

half-carry/half-borrow flag in DAA instruction

Apologies for making this my second Z80 DAA question - I have pretty much implemented this instruction now, but there is one thing I'm not sure about - is the H flag set by this instruction at all? ...
3
votes
5answers
95 views

Changing a flag based on a boolean

Does any have a more elegant way of doing this? [Flags] public enum SomeFlaggedEnum { Value1 = 1, Value2 = 2, Value3 = 4 } private SomeFlaggedEnum _myFlags; public bool EnabledValue1 ...
3
votes
4answers
125 views

C# - How to use enum flags in a certain way

What I am I trying to do is this: [Flags] public enum Actions { Action1 = 0x01, Action2 = 0x02, Action3 = 0x04 } The object has the actions flag set to 7 to begin with. The object can ...
3
votes
1answer
180 views

How to add SIMD-related compiler flags in visual studio 2010

I found this list of flags: http://www.ncsa.illinois.edu/UserInfo/Resources/Software/Intel/Compilers/10.0/main_for/mergedProjects/optaps_for/common/optaps_dsp_targ.htm and I'd like to try and add ...
3
votes
1answer
398 views

Getting all MotionEvents with WindowManager.LayoutParams.FLAG_WATCH_OUTSIDE_TOUCH

My question refers directly to this question. The answer to that question shows how one can create a ViewGroup, embed it inside a WindowManager, and allow the WindowManager to catch MotionEvents ...
3
votes
1answer
434 views

How to add flags with my intent in the manifest file

we know that there are flags which we can add to our intent using the addFlags() method in our java code. Is there any way we can add these flags in the manifest file itself instead of writing this ...
3
votes
2answers
308 views

lock/unlock orientation

To lock my orientation to portrait, I use: activity.setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT); I'm unsure what flag tells the activity to go back to relying on the device ...
3
votes
1answer
154 views

How to get a flags enum to convert to UInt64 with a TypeConverter

I have a class which takes a generic class TState in its constructor, under the condition that TState can be converted to a UInt64using a TypeConverter. It will then be used as flags. I want to use a ...

1 2 3 4 5