Jump to content

Recommended Posts

Posted

-2^63 largest négative, 2^63-1 largest positive.

  Reveal hidden contents

This wonderful site allows debugging and testing regular expressions (many flavors available). An absolute must have in your bookmarks.
Another excellent RegExp tutorial. Don't forget downloading your copy of up-to-date pcretest.exe and pcregrep.exe here
RegExp tutorial: enough to get started
PCRE v8.33 regexp documentation latest available release and currently implemented in AutoIt beta.

SQLitespeed is another feature-rich premier SQLite manager (includes import/export). Well worth a try.
SQLite Expert (freeware Personal Edition or payware Pro version) is a very useful SQLite database manager.
An excellent eBook covering almost every aspect of SQLite3: a must-read for anyone doing serious work.
SQL tutorial (covers "generic" SQL, but most of it applies to SQLite as well)
A work-in-progress SQLite3 tutorial. Don't miss other LxyzTHW pages!
SQLite official website with full documentation (may be newer than the SQLite library that comes standard with AutoIt)

Posted

What did you try that led you to suspect otherwise?

  Reveal hidden contents

This wonderful site allows debugging and testing regular expressions (many flavors available). An absolute must have in your bookmarks.
Another excellent RegExp tutorial. Don't forget downloading your copy of up-to-date pcretest.exe and pcregrep.exe here
RegExp tutorial: enough to get started
PCRE v8.33 regexp documentation latest available release and currently implemented in AutoIt beta.

SQLitespeed is another feature-rich premier SQLite manager (includes import/export). Well worth a try.
SQLite Expert (freeware Personal Edition or payware Pro version) is a very useful SQLite database manager.
An excellent eBook covering almost every aspect of SQLite3: a must-read for anyone doing serious work.
SQL tutorial (covers "generic" SQL, but most of it applies to SQLite as well)
A work-in-progress SQLite3 tutorial. Don't miss other LxyzTHW pages!
SQLite official website with full documentation (may be newer than the SQLite library that comes standard with AutoIt)

Posted

You can perform arithmetic on 64-bit integers in C inside a X86 process.

Now:

$n = 9223372036854775800
For $i = 1 To 12
    ConsoleWrite($n & " is a " & VarGetType($n) & @LF)
    $n +=  1
Next

 

  Reveal hidden contents

This wonderful site allows debugging and testing regular expressions (many flavors available). An absolute must have in your bookmarks.
Another excellent RegExp tutorial. Don't forget downloading your copy of up-to-date pcretest.exe and pcregrep.exe here
RegExp tutorial: enough to get started
PCRE v8.33 regexp documentation latest available release and currently implemented in AutoIt beta.

SQLitespeed is another feature-rich premier SQLite manager (includes import/export). Well worth a try.
SQLite Expert (freeware Personal Edition or payware Pro version) is a very useful SQLite database manager.
An excellent eBook covering almost every aspect of SQLite3: a must-read for anyone doing serious work.
SQL tutorial (covers "generic" SQL, but most of it applies to SQLite as well)
A work-in-progress SQLite3 tutorial. Don't miss other LxyzTHW pages!
SQLite official website with full documentation (may be newer than the SQLite library that comes standard with AutoIt)

Posted

Also:

ConsoleWrite(VarGetType(2^63) & @LF)

 

  Reveal hidden contents

This wonderful site allows debugging and testing regular expressions (many flavors available). An absolute must have in your bookmarks.
Another excellent RegExp tutorial. Don't forget downloading your copy of up-to-date pcretest.exe and pcregrep.exe here
RegExp tutorial: enough to get started
PCRE v8.33 regexp documentation latest available release and currently implemented in AutoIt beta.

SQLitespeed is another feature-rich premier SQLite manager (includes import/export). Well worth a try.
SQLite Expert (freeware Personal Edition or payware Pro version) is a very useful SQLite database manager.
An excellent eBook covering almost every aspect of SQLite3: a must-read for anyone doing serious work.
SQL tutorial (covers "generic" SQL, but most of it applies to SQLite as well)
A work-in-progress SQLite3 tutorial. Don't miss other LxyzTHW pages!
SQLite official website with full documentation (may be newer than the SQLite library that comes standard with AutoIt)

Posted (edited)
  On 9/15/2016 at 10:57 AM, jchd said:

Now:

$n = 9223372036854775800
For $i = 1 To 12
    ConsoleWrite($n & " is a " & VarGetType($n) & @LF)
    $n +=  1
Next

 

Expand  

My Output:

9223372036854775800 is a Int64
9223372036854775801 is a Int64
9223372036854775802 is a Int64
9223372036854775803 is a Int64
9223372036854775804 is a Int64
9223372036854775805 is a Int64
9223372036854775806 is a Int64
9223372036854775807 is a Int64
-9223372036854775808 is a Int64
-9223372036854775807 is a Int64
-9223372036854775806 is a Int64
-9223372036854775805 is a Int64

 

  On 9/15/2016 at 10:59 AM, jchd said:

Also:

ConsoleWrite(VarGetType(2^63) & @LF)

 

Expand  
Double

 

Edited by TheDcoder

EasyCodeIt - A cross-platform AutoIt implementation - Fund the development! (GitHub will double your donations for a limited time)

DcodingTheWeb Forum - Follow for updates and Join for discussion

Posted
$iInt32 = 2147483647 ; 2^31 - 1. Highest Int32
$iInt64 = $iInt32 + 1 ; lowest 64 Int
ConsoleWrite(VarGetType($iInt32) & @CRLF)
ConsoleWrite(VarGetType($iInt64) & @CRLF)
$iInt64 = 9223372036854775807 ; 2^63 - 1. Highest Int64
ConsoleWrite(VarGetType($iInt64) & @CRLF)

as described here: https://www.autoitscript.com/autoit3/docs/intro/lang_datatypes.htm

My UDFs and Tutorials:

  Reveal hidden contents

 

Posted

Obviously!

You really should google about 2's complement arithmetics. Also X64 is (merely) X86 with an address space on steroids (well, from AutoIt simple users point of view).

  Reveal hidden contents

This wonderful site allows debugging and testing regular expressions (many flavors available). An absolute must have in your bookmarks.
Another excellent RegExp tutorial. Don't forget downloading your copy of up-to-date pcretest.exe and pcregrep.exe here
RegExp tutorial: enough to get started
PCRE v8.33 regexp documentation latest available release and currently implemented in AutoIt beta.

SQLitespeed is another feature-rich premier SQLite manager (includes import/export). Well worth a try.
SQLite Expert (freeware Personal Edition or payware Pro version) is a very useful SQLite database manager.
An excellent eBook covering almost every aspect of SQLite3: a must-read for anyone doing serious work.
SQL tutorial (covers "generic" SQL, but most of it applies to SQLite as well)
A work-in-progress SQLite3 tutorial. Don't miss other LxyzTHW pages!
SQLite official website with full documentation (may be newer than the SQLite library that comes standard with AutoIt)

Posted
$iInt32 = 2147483647 ; 2^31 - 1. Highest Int32
$iInt64 = $iInt32 + 1 ; lowest 64 Int
ConsoleWrite(VarGetType($iInt32) & @CRLF)
ConsoleWrite(VarGetType($iInt64) & @CRLF)
$iInt64 = 9223372036854775807 ; 2^63 - 1. Highest Int64
ConsoleWrite(VarGetType($iInt64) & @CRLF)

 

My UDFs and Tutorials:

  Reveal hidden contents

 

Posted

Finally, note that 2^63 being a double isn't an exceptional case:

ConsoleWrite(VarGetType(2^48) & @LF)
ConsoleWrite(VarGetType(2^49) & @LF)

 

  Reveal hidden contents

This wonderful site allows debugging and testing regular expressions (many flavors available). An absolute must have in your bookmarks.
Another excellent RegExp tutorial. Don't forget downloading your copy of up-to-date pcretest.exe and pcregrep.exe here
RegExp tutorial: enough to get started
PCRE v8.33 regexp documentation latest available release and currently implemented in AutoIt beta.

SQLitespeed is another feature-rich premier SQLite manager (includes import/export). Well worth a try.
SQLite Expert (freeware Personal Edition or payware Pro version) is a very useful SQLite database manager.
An excellent eBook covering almost every aspect of SQLite3: a must-read for anyone doing serious work.
SQL tutorial (covers "generic" SQL, but most of it applies to SQLite as well)
A work-in-progress SQLite3 tutorial. Don't miss other LxyzTHW pages!
SQLite official website with full documentation (may be newer than the SQLite library that comes standard with AutoIt)

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...