Tagged Questions
The unsigned tag has no wiki summary.
64
votes
10answers
14k views
Why doesn't Java support unsigned ints?
Why doesn't Java include support for unsigned integers? It seems to me to be an odd omission, given that they allow one to write code that is less likely to produce overflows on unexpectedly large ...
35
votes
7answers
43k views
How to determine the variable type in Python
I want to see the type of a variable whether it is unsigned 32 bit,signed 16 bit etc.
How to view...
34
votes
3answers
959 views
unsigned int (c++) vs uint (c#)
Following is the c# code:
static void Main(string[] args)
{
uint y = 12;
int x = -2;
if (x > y)
Console.WriteLine("x is greater");
else
...
33
votes
11answers
24k views
Signed versus UnSigned Integers
Am I correct to say the difference between a signed and unsigned integer is:
UnSigned can hold a larger positive value, and no negative value.
Unsigned uses the leading bit, while the signed version ...
24
votes
5answers
2k views
Why does “int[] is uint[] == true” in C#
Can somebody clarify the C# is keyword please. In particular these 2 questions:
Q1) line 5; Why does this return true?
Q2) line 7; Why no cast exception?
public void Test()
{
object intArray = ...
21
votes
10answers
7k views
Why doesn't C have unsigned floats?
I know, the question seems to be strange. Programmers sometimes think too much. Please read on...
In C I use signed and unsigned integers a lot. I like the fact that the compiler warns me if I do ...
21
votes
5answers
20k views
Java equivalent of unsigned long long?
In C++, I enjoyed having access to a 64 bit unsigned integer, via unsigned long long int, or via uint64_t. Now, in Java longs are 64 bits, I know. However, they are signed.
Is there an unsigned ...
20
votes
7answers
7k views
What is the best way to work around the fact that ALL Java bytes are signed?
In Java, there is no such thing as an unsigned byte.
Working with some low level code, occasionally you need to work with bytes that have unsigned values greater than 128, which causes Java to ...
18
votes
4answers
765 views
Signed/unsigned comparisons
I'm trying to understand why the following code doesn't issue a warning at the indicated place.
//from limits.h
#define UINT_MAX 0xffffffff /* maximum unsigned int value */
#define INT_MAX ...
16
votes
5answers
778 views
Why is −1 > sizeof(int)?
Consider the following code:
template<bool> class StaticAssert;
template<> class StaticAssert<true> {};
StaticAssert< (-1 < sizeof(int)) > xyz1; // Compile error
...
15
votes
3answers
531 views
Is there a Java library for unsigned number type wrappers?
Obviously, Java doesn't support unsigned number types natively, and that's not going to change soon (comments starting in 2002). However, when working with databases, such as MySQL, they may come in ...
15
votes
3answers
3k views
14
votes
4answers
354 views
Would it break the language or existing code if we'd add safe signed/unsigned compares to C/C++?
After reading this question on signed/unsigned compares (they come up every couple of days I'd say):
http://stackoverflow.com/questions/3475841/signed-unsigned-comparison-and-wall
I wondered why ...
13
votes
2answers
4k views
Can't get rid of “this decimal constant is unsigned only in ISO C90” warning
I'm using the FNV hash as a hashing algorithm on my Hash Table implementation but I'm getting the warning in the question title on this line:
unsigned hash = 2166136261;
I don't understand why this ...
12
votes
3answers
386 views
Is there a practical way of using natural numbers in Haskell?
I'm learning Haskell and would like to impose the use of positive integers (1,2,3, ...) in some constructors, but I only seem to find the 'Int' and 'Integer' datatypes.
I could use the canonical
...
10
votes
14answers
832 views
The importance of declaring a variable as unsigned
Is it important to declare a variable as unsigned if you know it should never be negative? Does it help prevent anything other than negative numbers being fed into a function that shouldn't have them?
...
9
votes
6answers
4k views
can we make unsigned byte in java
i am trying to convert a signed byte in unsigned , the problem is the data I am receiving is Unsigned and Java does not support unsigned byte so when it reads the data it treats it as signed.
I tried ...
8
votes
3answers
161 views
How to judge an overflow when adding signed to unsigned
I'm trying to detect the overflow when adding a signed offset to an unsigned position
uint32 position;
int32 offset; // it could be negative
uint32 position = position+offset;
How can I check ...
8
votes
5answers
546 views
why is char's sign-ness not defined in C?
The C standard states:
ISO/IEC 9899:1999, 6.2.5.15 (p. 49)
The three types char, signed char, and
unsigned char are collectively called
the character types. The
implementation shall define ...
8
votes
4answers
905 views
Why compiler is not giving error when signed value is assigned to unsigned integer? - C++
I know unsigned int can't hold negative values. But the following code compiles without any errors/warnings.
unsigned int a = -10;
When I print the variable a, I get a wrong value printed. If ...
7
votes
4answers
263 views
unsigned becomes signed in if-statement comparisons?
I have searched this site for an answer and found many responses to unsigned/signed comparison but this problem is that only unsigned parameters are compared but still it works funny.
The problem ...
7
votes
8answers
297 views
For loop condition to stop at 0 when using unsigned integers?
I have a loop that has to go from N to 0 (inclusively). My i variable is of type size_t which is usually unsigned. I am currently using the following code:
for (size_t i = N; i != (size_t) -1; --i) ...
7
votes
4answers
15k views
How to printf “unsigned long” in C?
I can never understand how to print unsigned long datatype in C.
Suppose boo is an unsigned long, then I try:
printf("%lu\n", unsigned_boo)
printf("%du\n", unsigned_boo)
printf("%ud\n", ...
7
votes
3answers
166 views
Unsigned versus signed numbers as indexes
Whats the rationale for using signed numbers as indexes in .Net?
In Python, you can index from the end of an array by sending negative numbers, but this is not the case in .Net.
It's not easy for ...
7
votes
6answers
4k views
Unsigned Integer in Javascript
I'm working on a page that processes IP address information, but it's choking on the fact that integers are signed. I am using bitwise operators to speed it up, but the 64th bit (signed/unsigned flag) ...
7
votes
4answers
1k views
what is the unsigned datatype?
I've seen this unsigned "typeless" type used a couple of times, but never seen an explanation for it. I suppose there's a corresponding signed type. Here's an example:
static unsigned long next = 1;
...
6
votes
4answers
632 views
Difference between signed and unsigned data types?
main()
{
char i=255;
printf("\n%x\n",i);
}
output:ffffffff
main()
{
u_char i=255;
printf("\n%x\n",i);
}
output:ff
What is happening here? Kindly explain the output to me with ...
6
votes
4answers
412 views
Signed vs Unsigned operations in C
Very simple question:
I have a program doing lots and lots of mathematical computations over ints and long longs. To fit in an extra bit, I made the long longs unsigned, since I only dealt with ...
6
votes
1answer
467 views
Unsigned Int in Java
I'm trying to implement an existing network protocol which makes heavy use of Unsigned datatypes, which are not supported by Java. What I currently do is for each datatype, chose the next bigger one ...
6
votes
4answers
254 views
Why are the unsigned CLR types so difficult to use in C#?
I came from a mostly C/C++ background before I began using C#. One of the things I did with my first project in C# was make a class like this
class Element{
public uint Size;
public ulong ...
6
votes
5answers
322 views
Unsigned negative primitives?
In C++ we can make primitives unsigned. But they are always positive. Is there also a way to make unsigned negative variables? I know the word unsigned means "without sign", so also not a minus (-) ...
6
votes
4answers
1k views
Why unsigned int contained negative number
I am new to C,
What I know about unsigned numerics (unsigned short, int and longs), that It contains positive numbers only, but the following simple program successfully assigned a negative number to ...
6
votes
2answers
256 views
Why doesn't GCC produce a warning when assigning a signed literal to an unsigned type?
Several questions on this website reveal pitfalls when mixing signed and unsigned types and most compilers seem to do a good job about generating warnings of this type. However, GCC doesn't seem to ...
6
votes
2answers
196 views
Why this C program outputs a negative number?
I have assigned the complement value in an unsigned variable.
Then why this C program outputs a negative number?
#include<stdio.h>
#include<conio.h>
int main()
{
unsigned int Value ...
6
votes
5answers
2k views
Unsigned keyword in C++
Does the unsigned keyword default to a data type in C++? I am trying to write a function for a class for the prototype:
unsigned Rotate(unsigned object, int count)
But I don't really get what ...
6
votes
2answers
3k views
How to get the signed integer value of a long in python?
If lv stores a long value, and the machine is 32 bits, the following code:
iv = int(lv & 0xffffffff)
results an iv of type long, instead of the machine's int.
How can I get the (signed) ...
6
votes
5answers
411 views
What should happen to the negation of a size_t (i.e. `-sizeof(struct foo)`))?
I'm dealing with some code at work that includes an expression of the form
-(sizeof(struct foo))
i.e. the negation of a size_t, and I'm unclear on what the C and C++ standards require of compilers ...
5
votes
2answers
70 views
unsigned overflow with modulus operator in C
i encountered a bug in some c code i wrote, and while it was relatively easy to fix, i want to be able to understand the issue underlying it better. essentially what happened is i had two unsigned ...
5
votes
3answers
87 views
Is Java's lack of unsigned primitive types a characteristic of Java the platform or Java the language?
There are questions about why Java doesn't support unsigned types and a few questions about dealing with unsigned types. I did some searching, and it appears that Scala also doesn't support unsigned ...
5
votes
3answers
168 views
Using a typedef'd uint causes error, while “unsigned int” does not…?
For some reason, when I define a variable as "uint" instead of "unsigned int" in my program, it errors. This seems strange, because uint is typedef'd as:
typedef unsigned int uint;
...so I would ...
5
votes
9answers
214 views
Why is int rather than unsigned int used for C and C++ for loops?
This is a rather silly question but why is int commonly used instead of unsigned int when defining a for loop for an array in C or C++?
for(int i;i<arraySize;i++){}
for(unsigned int ...
5
votes
3answers
254 views
Unsigned Double
I need to use and unsigned double but as it turns out C# does not support such a thing.
Does anyone have any idea Why does C# not have Unsigned Double?
5
votes
7answers
265 views
Does unsigned math require more CPU instructions?
Take an C++ integral variable i, and supposed that you're multiplying its value by 2.
If i has signedness, I believe that the operation is somewhat equivalent, at least mathematically, to:
i = i ...
5
votes
4answers
238 views
casting signed to unsigned
is it correct to do this?
typedef unsigned int Index;
enum
{
InvalidIndex = (Index) -1
};
I have read that it is unsafe across platforms, but I have seen this in so many "professional" codes...
...
5
votes
2answers
359 views
When should I use std_logic_vector and when should I use other data types?
I'm new to VHDL and am having trouble figuring out which data types are appropriate to use where. If I understand correctly, for synthesis, all top level entity ports should be declared either ...
5
votes
2answers
389 views
Unsigned long and bit shifting
I have a problem with bit shifting and unsigned longs. Here's my test code:
char header[4];
header[0] = 0x80;
header[1] = 0x00;
header[2] = 0x00;
header[3] = 0x00;
unsigned long l1 = 0x80000000UL;
...
5
votes
2answers
509 views
Unsigned hexadecimal constant in C?
Does C treat hexadecimal constants (e.g. 0x23FE) and signed or unsigned int?
Amr
5
votes
6answers
503 views
Efficiently convert an unsigned short to a char*
What would be an efficient, portable way to convert a unsigned short to a char* (i.e. convert 25 to '25').
I'd like to avoid things such as getting (std::string) strings involved. Performance is ...
5
votes
2answers
365 views
x86_64 bad choice for uint_fast16_t and uint_fast32_t?
The C standard is quite unclear about the uint_fast*_t family of types. On a gcc-4.4.4 linux x86_64 system, the types uint_fast16_t and uint_fast32_t are both 8 bytes in size. However, multiplication ...
5
votes
2answers
319 views
Data type promotions during arithmetic operations
main() {
if ( -1 < (unsigned char) 1 )
printf("less than");
else
printf("NOT less than");
}
what is happening?
(unsigned char)1 converted to (signed char)1
then: ...