0
votes
2answers
61 views

How to change boolean code to int code in java [closed]

I am trying to change some code in my admin panel because of some recent changes in my protocols. What I am trying to do is change the code from boolean to int. I will state now I am a complete novice ...
-2
votes
1answer
69 views

Calling/using a method in the same class [closed]

Here i have some problem with this. In the code there are 2 methods: isDNASequence and getDistances. Now i already filled in what i think should isDNASequence should be but i'm clueless on how to get ...
-9
votes
3answers
106 views

Better way to convert an int to a boolean [closed]

The input int value only consist out of 1 or 0. I can solve the problem by writing a if else statement. Isn't there a way to cast the int into a boolean? Thanks
68
votes
9answers
3k views

What does this boolean return mean?

On CodeReview I posted a working piece of code and asked for tips to improve it. One I got was to use a boolean method to check if an ArrayList had an even number of indices (which was required). This ...
0
votes
2answers
88 views

Searching a list to compare int and say true or false in SML

Okay so the overall goal is to test whether or not a number you input is a fibonacci number. For example isfib(100) = false isfib(8) = true This is what I tried: fun fib a b This finds ...
3
votes
2answers
128 views

Compiler Error CS0029: “if (int & int)”

Adapt the old code in C + + The compiler does not pass the type expression "if (a & b)" int a = 32; int b = 1; if (a & b) {} <--- Compiler Error Implicit conversion from Int to Bool. I ...
0
votes
3answers
109 views

int to bool casting

In VS 10 I get a warning: warning C4800: 'int' : forcing value to bool 'true' or 'false' (performance warning) trying to compile int x ; static_cast<bool>(x); How is it possible to write ...
2
votes
7answers
134 views

Checking to see if a string is an integer - Java [duplicate]

Possible Duplicate: Determine if a String is an Integer in Java I have found several links related to my question, but they were not exactly what I was looking for. I would prefer to use a ...
9
votes
6answers
492 views

Checking the “boolean” result of an “int” type

I'm learning java, coming from C and I found an interesting difference between languages with the boolean type. In C there is no bool/ean so we need to use numeric types to repersent boolean logic (0 ...
-4
votes
4answers
205 views

“The left-hand side of an assignment must be a variable” with int and boolean

I have to write the condition for this: last_page = ((nl.getLength() == 0) -= 1); In this line am getting following error: The left-hand side of an assignment must be a variable This is my ...
3
votes
6answers
354 views

How to toggle an int / _Bool in C

Suppose we have an int and want to toggle it between 0 and 1 in a boolean fashion. I thought of the following possibilities: int value = 0; // May as well be 1 value = value == 0 ? 1 : 0; value = ...
1
vote
2answers
56 views

Using getByte() with primitive data

In JAVA the method getByte() is undefined for for Ints, Booleans and all primitive data types (I believe). Is there a way I can get my Boolean and/or Int variables to work with the method. Or what ...
0
votes
3answers
236 views

What is the XOR operator evaluating when switching the int values of two variables? [duplicate]

Possible Duplicate: How does XOR variable swapping work? I found a solution to switching the values of two variables, without creating a third variable, which is as follows: x ^= y; y ^= ...
-1
votes
2answers
71 views

How to pass Boolean OR int from PHP to Android

I've been writing a program that relies a lot on passing strings from PHP to android; I use entityutils.toString to pass that information to my app. However, I now need to pass a Boolean from PHP to ...
2
votes
5answers
118 views

This loop works but is there another way to do loop in java?

Hi i'm learning about loops, but is there an easier or another way to do a loop? I'm just trying different ways to play with the loops so I can understand it better..I would appreciate it. Thanks very ...
0
votes
1answer
45 views

Displaying parameters of method in a textview or toast

Hey guys i cannot figure out the logic behind why my code is not working, apparently I am not allowed to print out these values in this way. I cannot display the values of v1,v2,v3 or v4 into a toast ...
-2
votes
5answers
762 views

Java: Convert bool array into a single int [closed]

I have a boolean array (length = 2) that I want to consecrate and convert to an integer so that individual bits inside the integer would represent values from the boolean array: [false, false] = 0 ...
3
votes
4answers
139 views

Int considered as bool, & operator

I've been struggling for a while with a part of my code and I finally found that the problem lies with a simple test that don't give me the result I expect. if (2) //=> true if (2 & true) ...
4
votes
4answers
377 views

Why does the WinAPI use an int (32 bits) for the BOOL type?

// <windef.h> typedef int BOOL; Isn't this a waste of memory since an int is 32 bits? Just in case I was wrong, I tried sending a normal bool* to a function that required ...
3
votes
6answers
420 views

If bool is a macro for int, why is it a different size?

I was hoping somebody could explain why #include <stdbool.h> printf("size of bool %d\n", sizeof(bool)); printf("size of int %d\n", sizeof(int)); outputs to size of bool 1 size of int 4 ...
3
votes
2answers
2k views

C# boolean int conversion issue

I am working on a trading API (activex from interactive brokers)which has a method called: void reqMktDataEx(int tickerId, IContract contract, string generalDetails, int snapshot) The issue is ...
0
votes
2answers
388 views

int to bool[] in c++

What I want to do is given an argument const int &i, return the bits of the binary representation of i in the form of an array of bool (And back would also be great)... Does anyone know how?
2
votes
2answers
617 views

Detecting a change in an integer

Is there any way to detect change in an integer? Such as creating a listener to listen to the integer to detect and change in value it has. I know this is possible with booleans with a few tricks ...
15
votes
4answers
2k views

Boolean vs Int in Javascript

I always assumed that booleans were more efficient than ints at storing an on/off value - considering that's their reason for existence. I recently decided to check if this is true with the help of ...
0
votes
2answers
636 views

Problem with mapping int column to a bool property in nhibernate

nhibernate fellas, I've got a int column mapped as boolean type in domain objects. Everything was looking good until today where we noticed when doing a QueryOver on the bool property the actual sql ...
2
votes
3answers
1k views

Proper way to convert BOOL value into INT?

Everytime when I tried to convert BOOL value into int. INT value is showing -8 for True and 0 for False. Ideally it should return 1 for true. I have tried all possible ways of conversion like int ...
0
votes
7answers
948 views

short short int in c?

I'm trying to squeeze as much out of my memory as possible. I have a matrix of 4.9999995e13 ints but they only need to be true or false - basically I only need one bit of storage for each of these ...
5
votes
5answers
6k views

Can't cast int to bool

I'm facing the problem that C# in my case can't cast the number 1 to bool. In my scenario (bool)intValue doesn't work. I get an InvalidCastException. I know I can use Convert.ToBoolean but I'm just ...
57
votes
8answers
8k views

Which is faster : if (bool) or if(int)?

Which value is better to use? Boolean true or Integer 1? The above topic made me do some experiments with bool and int in if condition. So just out of curiosity I wrote this program: int f(int ...
1
vote
4answers
272 views

Can't cast int to T, where T is bool. Is there a way to do this with C#?

I'll try to be quick, as I already made exhaustive search on this topic and I only find topics related to converting bool into int. I built a class to handle sparse matrices. They could be filled by ...
6
votes
9answers
323 views

When are booleans better than integers?

In most programming languages, 1 and 0 can be used instead of True and False. However, from my experience, integers seem to always be easier to use. Here are some examples of what I mean: if x is ...
0
votes
1answer
328 views

Having problems saving boolean and int to sharedPrefs

I'm trying to create an endgame activity for my Hangman game for android and i'm having some trouble committing values OTHER than strings. Here is my main activity: package com.assignment.hangman; ...
1
vote
7answers
391 views

Copying array of ints vs pointers to bools

I'm working on a program that requires an array to be copied many thousands/millions of times. Right now I have two ways of representing the data in the array: An array of ints: int someArray[8][8]; ...
36
votes
10answers
48k views

Convert boolean to int in Java

What is the most accepted way to convert a boolean to an int in Java?
8
votes
4answers
442 views

What is the size of a Nullable<Int32>?

So, a couple of questions, actually: An int (Int32) is specified to be (obviously) 32 bits. What about an int? (Nullable<int>)? My gut tells me that it would be 32 bits for the integer plus 8 ...
4
votes
6answers
140 views

Python operators returning ints

Is there any way to have Python operators line "==" and ">" return ints instead of bools. I know that I could use the int function (int(1 == 1)) or add 0 ((1 == 1) + 0) but I was wondering if there ...
5
votes
4answers
1k views

Java: for loop, incompatible types

I'm trying to run this for loop; for (int col= 0; grid[0].length; col++) However every time I try to compile I get an error stating 'incompatible types - found int but expected boolean' I ...
0
votes
4answers
2k views

Cast bool to T where T is int

How can I make this function reliably cast sourceValue to type T where sourceValue is bool and T is int? public static T ConvertTo<T>(Object sourceValue) { // IF IS OF THE SAME TYPE --> ...
0
votes
1answer
88 views

Why SS generated all Int data type to bool?

My Db have some fields using Integer data type, but after SS generated them, all of them 're Boolean db type. Please tell me how to fix it ! Thanks !