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) int value in this case?
|
|
|
You're working in a high-level scripting language; by nature, the native data types of the system you're running on aren't visible. You can't cast to a native signed int with code like this. If you know that you want the value converted to a 32-bit signed integer--regardless of the platform--you can just do the conversion with the simple math:
|
|||||||||||||||
|
|
You may use struct library to convert values like that. It's ugly, but works:
|
|||
|
|||
|
|
|
Can I suggest this:
|
|||
|
|