Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialOmotayo Olawepo
2,803 PointsWhat does Ui32 mean and what does it do
What does Ui32 mean and what does it do
1 Answer
Thorsten Herbst
11,935 PointsHello. I think, with Ui32 you mean UInt32. UInt32 describes an Unsigned Integer which is 32Bit long. Instead of Int 32 which is signed the UInt32 has NO Negative Values and it can represent Values from 0 to 4294967295. (2^32).
The Difference between Both is that Int32 can represent Values between -2147483648 and 2147483647
Hope this helps.
Greets Thorsten
Richard Lu
20,185 PointsRichard Lu
20,185 PointsHey Omotayo, do you mean UInt32?