The Boolean data type represents simple True or False values.

learn more… | top users | synonyms (1)

1
vote
2answers
41 views

Boolean var has different value then query filling it?

Alright guys, I'm absolutely speechless. I am building a GUI with the vaadin framework, but that shouldn't matter for the problem. Heres my Code: private final boolean readOnly = ...
0
votes
0answers
24 views

MVC 4.0 String was not recognized as a valid Boolean

I have a razor 2.0 form which works perfectly locally. I've verified that the dll's on prod for MVC, Razor, and helpers are all the latest version. I'm getting this exception on every page that uses ...
13
votes
7answers
4k views

Difference in & and &&

I always thought that "&&" operator in JAVA is used for verifying whether both its boolean operands are TRUE, and the "&" operator is used to do Bit wise operations on two integer types, ...
0
votes
2answers
82 views

Is there a better way to check for boolean logic

I have an xml filelike so <Config> <Allowed></Allowed> </Config> The Allowed tag is read like this: string isAllowed = (string)xml.Root ...
2
votes
1answer
44 views

python 'and' boolean operator

hi i'm complete confused on how to do what i want, i'm basically checking a file that it has two words in for this instance the username and password for a user. text = open("Accounts.dat", 'w') ...
10
votes
8answers
5k views

Casting a boolean to an integer returns -1 for true?

I am working with some VB.NET code that seems to be casting a boolean value to an integer using CInt(myBoolean). The odd thing that is happening is that it returns -1 if the value is true. For ...
-4
votes
0answers
30 views

mysql_num_rows() expects parameter 1 to be resource [duplicate]

Warning: mysql_num_rows() expects parameter 1 to be resource, boolean given in I know this has been posted before, but everyone else's solutions seem to be different and irrelevant in my case. ...
0
votes
1answer
22 views

How do I manage an NSString as BOOL in iOS Core Data?

I have a webservice that returns a 0 string for a field I need called driveThru in order to determine whether a location has a drive thru service or not. I take that "0" and store it as a string in ...
0
votes
2answers
75 views

How to check if bool already exists

I an developing a lib for use on an embedded platform. I have code in a header that is part of the lib with typdef enum bool {false, true} bool; If the lib user has already defined a type named ...
0
votes
3answers
89 views

Trouble with using a simple boolean [closed]

Sorry if this is a stupid question, but Im completely new to this and just trying my hand. My code is stuck....after this point, the program ends, no matter whether a 1 or 2 is selected. I know its ...
0
votes
1answer
35 views

Use boolean to search duplicate

I want to use boolean to search duplicate when I need to print out a list of names. So I need to write a program to read names in a text file and print it out to console. But the compiler doesn't work ...
1
vote
2answers
697 views

I'm making a python text-adventure. Need help making an 'inventory'

I'm making a python text adventure. It is based off of ex41 in Learn Python the Hard Way, so it is somewhat similar. My question, however, has nothing to do with that exercise. I'm trying to make ...
0
votes
2answers
58 views

How to do file I/O with std::vector<bool>?

I need to implement a Boolean data container that will store fairly large amount of variables. I suppose I could just use char* and implement C-style macro accessors but I would prefer to have it ...
0
votes
2answers
9k views

Crystal Reports Formula Workshop boolean condition to string

I'm currently trying to create a report using Crystal Reports that comes with Visual Studio 2008. I would like to include a field of type boolean on my report that shows a string rather than true or ...
-2
votes
1answer
34 views

How to check for True or False on Objective C BOOL variable [closed]

I have a NSObject that contains several objects a couple of which are BOOL variables which are set to either "T" or "F" I would like to know how to use them in an If statement that looks like this. ...
0
votes
3answers
113 views

C++ Boolean Value always incorrectly returns true in 2-3 Tree Search

I'm literally ripping my hair out on this one fellas. Here's the problem. I've hard coded a 2-3 Tree and verified that it works with the use of an inorder traversal function that outputs the values of ...
0
votes
2answers
77 views

Boolean function

I am trying to use a find_if Boolean function to return true if: Z is =<10; name="john" (all lower case) My code: /* predicate for find_if */ bool exam_pred(const exam_struct &a) { if ...
0
votes
1answer
94 views

What are boolean evaluation rules in Javascript? [duplicate]

Possible Duplicate: Why does (‘0’ ? ‘a’ : ‘b’) behave different than (‘0’ == true ? ‘a’ : ‘b’) I'm currently learning Javascript and so far am pleased about the language. This morning, ...
1
vote
0answers
16 views

MySQL FTS boolean mode operator customizing

I'm using the InnoDB FTS of MySQL 5.6.10 and want to change the default behavior of the boolean operators. Note In implementing this feature, MySQL uses what is sometimes referred to as implied ...
7
votes
1answer
203 views

python tilde unary operator as negation numpy bool array

Should be a simple question, but I'm unable to find an answer anywhere. The ~ operator in python is a documented as a bitwise inversion operator. Fine. I have noticed seemingly schizophrenic behavior ...
2
votes
0answers
143 views

Inverting a numpy boolean array using ~

Can I use ~A to invert a numpy array of booleans, instead of the rather awkward functions np.logical_and() and np.invert()? Indeed, ~ seems to work fine, but I can't find it in any nympy reference ...
1
vote
1answer
29 views

How easily convert boolean to yes/no using Rails I18n

I have an easy problem - I need to convert boolean (contract_pledge) to yes/no format in Russian language (Да/Нет). I thought I could easily find an answer because if you want to display checkboxes in ...
4
votes
3answers
106 views

C++: Assigning the result of bitwise AND to a bool

I have the following loop in C++, compiled with g++ 4.1.2: while(1) { int status = getStatus(); bool firstOk = status & 0x1; bool secondOk = status & 0x2; if(firstOk != ...
0
votes
3answers
51 views

Using a Boolean in an If-Statement in Python

I have some code with an if-statement in it, and one of the conditions is a boolean. However, CodeSkulptor says "Line 36: TypeError: unsupported operand type(s) for BitAnd: 'bool' and 'number'". ...
11
votes
3answers
3k views

What is the purpose of new Boolean() in Javascript?

What is the use of: var flag = new Boolean(false); compared to: var flag = false; When would you actually use new Boolean?
0
votes
1answer
27 views

Unexpected boolean result using .nil? on a hash

I am working through exercises on codecademy and I came across a solution that I do not completely understand involving .nil? Here is my code : movies = { GIS: 10.0, Phantasm: 1.5, Bourne: 4.0} puts ...
-1
votes
6answers
64 views

array of booleans to represent a set of integers

Hey I was wondering if anyone could explain this further. This is not an assignment, it's just a solution to one of my tests I had. I've been trying to understand it but I'm not sure.. Basically the ...
0
votes
1answer
37 views

How to simplify boolean function into two logic gates?

Can anyone help me to simplify this boolean function into two logic gates? C(out) = AC(in) + BC(in) + AB
2
votes
6answers
104 views

Is it safe to cast a float with value 0.0f to boolean?

I know that due to precision errors, a float varibale should be checked to equal a value always with some tolerance. But what's is that even the case if I manually set the float variable to 0.0f? For ...
4
votes
2answers
57 views

Why the compilation error for boolean and String

I have the below code public class Test { public static void main(String[] args) { Integer i1=null; String s1=null; String s2=String.valueOf(i1); System.out.println(s1==null+" ...
1
vote
4answers
91 views

How to convert a search string to a boolean condition?

I have a search criteria stored in a string: string Searchstr = "(r.Value.Contains("PwC") || (r.Value.Contains("Canadian") && r.Value.Contains("thrive"))) || (r.Value.Contains("Banana") ...
-2
votes
2answers
60 views

Boolean as method return value

This scenario is very confusing to me - When a method returns a boolean value, and it is invoked from the outside in a if/else condition. For eg: Lets say I have the below method - public static ...
2
votes
6answers
24k views

How to make a boolean variable switch between true and false every time a method is invoked?

I am trying to write a method that when invoked, changes a boolean variable to true, and when invoked again, changes the same variable to false, etc. For example: call method -> boolean = true -> ...
1
vote
1answer
48 views

How do I require booleans in Play forms?

I'm using Play 2.1.0. I'm trying create an Action that accepts a POST request and requires that a boolean be required in the request body. What's happening now is that even if I don't supply the param ...
14
votes
4answers
3k views

Is sizeof(bool) defined?

I can't find an answer in the standard documentation. Is sizeof(bool) always 1-byte, or is it implementation defined?
2
votes
2answers
70 views

Operator >> doesn't like vector<bool>?

I have the following code which basically takes a vector and writes it to a file, and then opens the file and writes the content into a different vector. #include <fstream> #include ...
1
vote
3answers
54 views

Boolean variable in Webdriver

I have definition of Boolean variable in Webdriver backed as: boolean r1 = selenium.isTextPresent("something"); I used this in while loop. I want convert my code to Webdriver code and I tried: ...
10
votes
4answers
163 views

How to check against all joins when generating a score using MYSQL

I'm finding this fairly hard to explain so please bare with me here... I'm using MYSQL to generate a score for each result returned by a query. The results are then ordered by the score. The part ...
0
votes
3answers
2k views

How to write a private method that returns True for certain peramaters?

So the exact wording is, "Write a private method isValid(aRating) that returns true if the given rating is valid, which is between 1-10." private void isValid(aRating) { } What Goes in the ...
-1
votes
2answers
90 views

Weird warning issue when assigning a value to a BOOL pointer

I'm developing an in iOS6 and using Xcode 4.5.2. I've a UIViewController,let's say its name is aViewController. In this UIViewController, i've a BOOL pointer declared as a property using this code. ...
1
vote
4answers
42 views

Python Boolean Values

Why is it that in Python integers and floats are, without being evaluated in a boolean context, equivalent to True? Other data types have to be evaluated via an operator or bool().
-4
votes
1answer
24 views

return type of bool function

what is the return type of this sort of bool function...... i know the return type is either true of false but this seems complicated when you have got like this.. bool mypredicate (int i, int j) { ...
2
votes
6answers
6k views

How do I compare string and boolean in Javascript?

I got the Json "false" from server. I respond as bool but it's Json so it's in browser type is String instead of bool. So if I run (!data) whenever I want to check "false" == false then they not ...
0
votes
1answer
19 views

Android using a boolean flag to define user input

I apologise if the syntax is off here, especially regarding the Boolean: public class WeightConverter extends Activity implements OnClickListener, OnCheckedChangeListener { Button convertWeight; ...
0
votes
2answers
28 views

How can I easily set a variable to false with a default of true?

I usually set object properties like so, // Boolean this.listening = config.listening || true; But config.listening is either true or false, and in this case this.listening will always be true ...
2
votes
4answers
81 views

Boolean.TRUE == myBoolean vs. Boolean.TRUE.equals(myBoolean)

Is there ever a situation where using equals(Boolean) and == would return different results when dealing with Boolean objects? Boolean.TRUE == myBoolean; Boolean.TRUE.equals(myBoolean); I'm not ...
0
votes
0answers
19 views

Eclipse ADT: Impossibly weird boolean behavior

I'm having trouble changing variable values while at a breakpoint in debug mode. As a test, I have a simple loop with a boolean that gets toggled every pass: booleanTest = !booleanTest; Works ...
-3
votes
4answers
44 views

&& won't work in a boolean method [closed]

When I try to make a public Boolean, it gives me the error The operator && is undefined for the argument type(s) Boolean, Float the code is: public boolean mouseHover(int mouseX, int ...
0
votes
1answer
49 views

Spring MVC data binding diff in javabean and @RequestParam boolean request parameter

Spring MVC support request parameter to javabean. But when I want to bind boolean, It is still not work in javabean. If the code in controller is: public void test(@RequestParam(value="isCheck") ...
0
votes
0answers
44 views

Java, Jtable setmodel “boolean”

I'm making a jtable of products in production. I have a boolean for ended or !ended. This boolean should be the key to sort of which products i wish to see in my table. It should sort all ended ...

1 2 3 4 5 48