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 trial

iOS Objective-C Basics (Retired) Beyond the Basics Primitive Data Types

wilsonkwan
wilsonkwan
3,174 Points

General question

What is actually about the Bit system in general benefit/function for the operating system in programming development? As I'm always reading about 32/64 bits OS... What does it mean to me or as a developer or as user?

1 Answer

Rodrigo Chousal
Rodrigo Chousal
16,009 Points

Each object that is created while a program is running takes up memory. Running low on memory is a problem. It will cause a Mac app to perform badly and will cause an iOS app to crash. This is why it is essential that any objects that are no longer necessary are destroyed so that their memory can be reclaimed and used. Bits is the amount of memory a CPU has. The more memory (bits) a CPU has, the bigger the programs it can handle.