Tagged Questions

2
votes
9answers
146 views

How to check if String value is Boolean type in java?

Hi, Did a little search on this but couldn't find anything usefull. Point being that if String value is either "true" or "false" the return value should be true. In every other v …
0
votes
2answers
49 views

A Method that returns true if the Temperature objects represents a temp below freezing point (JAVA)

I'm trying to write a method named isLowerThanFreezing that returns true if the Temperature object represents a temperature below the freezing point for water (32.0 F, 0.0 C, or 27 …
1
vote
2answers
31 views

How do I convert a MySQL function result to tinyint(1)

Here's the problem. In MySQL's Connector/NET a TINYINT(1) field properly translates back and forth into a .NET bool value. If I select from a table with a TINYINT(1) column, everyt …
0
votes
4answers
50 views

Simple read vs write boolean variable performance comparison question

What should be the preferred way by programmers: 1) Only Write: SomeBoolean = True 2) Read but write only if necessary If Not SomeBoolean Then SomeBoolean = True
0
votes
1answer
32 views

ROR - My logic works, Boolean value doesn’t post

Hello fellas, My logic tests an inventory supply; and the < operator functions fine. How do I assign boolean values to "instock"? (using POST) In this test, under both condition …
0
votes
5answers
139 views

Boolean in Python

Does Python actually contain a Boolean value? I know that you can do: checker = 1 if checker: #dostuff But I'm quite pedantic and enjoy seeing booleans in Java. For instance …
1
vote
1answer
46 views

Pass a Boolean Ada type in Interfaces.C

I would like to now how to pass a standard Boolean Type in Ada through the Interfaces.C package in order to call a DLL function. The Interfaces.C package does not contain the Ada B …
1
vote
3answers
80 views

Boolean Expression Evaluation in Java

Hey everyone, Is there a relatively simpler (when compared with writing a parser) way to evaluate boolean expressions in Java? I do not want to use the JEP library. I have a String …
3
votes
3answers
85 views

Boolean Marshalling with LayoutKind.Explicit, Is this broken or failing as designed?

First of all the Boolean type is said to have a default marshal type of a four-byte value. So the following code works: struct A { public bool bValue1; …
1
vote
4answers
105 views

Should I use 0/1 or True/False boolean?

0/1 can be flexible and can add options such as "2, 3, 4" in the future. Does TinyINT in MySQL take up more space than boolean? Personally, I use 0 and 1 for everything. You c …
4
votes
3answers
118 views

Effect of a Bitwise Operator on a Boolean in Java

The bitwise operators are supposed to travel the variables and operate on the bit by bit. In the case of integers, longs, chars this makes sense. These variables can contain the …
0
votes
5answers
87 views

can php return a boolean? => return $aantal == 0;

hi very short question can php return a boolean like this: return $aantal == 0; like in java you can public boolean test(int i) { return i==0; } or do you Have to use a if c …
1
vote
3answers
94 views

Boolean Concatenation? What’s the real term for this pattern?

Please consider the following function body: var isValidated = true; $(selector1).each(function(){ //do validation with local f()... isValidated = f() && isValidat …
0
votes
1answer
17 views

MutableArray loaded with a .plist file Boolean Value. How do I test whether True or False??

I seem to have a problem understanding how to conditionally test a boolean value loaded from a .plist to a mutablearray. I simply dont understand what i am supposed to do and con …
1
vote
2answers
73 views

PLT Scheme noob: Boolean and/or aren’t procedures?

I'm trying to make a truth-table generator for a digital electronics course because that's how I have fun in my spare time and don't judge me. Anywho, I figured I'd have a hash wi …

1 2 3 4 5 11 next
15 30 50 per page