请问FOXPRO中的BITNOT和ASC函数在D5中对应的是哪个? (50分)

B

bastek

Unregistered / Unconfirmed
GUEST, unregistred user!
请问FOXPRO中的BITNOT和ASC函数在D5中对应的是哪个?
THANK YOU!
 
可能是NOT和ORD
 
Nobody know? or 分太少?
 
dongberlin说的对。
就是not和ord
 
但从我摘自《MSDN》
BITNOT function
See also
Returns a 16-bit binary number in which each bit is set to 1
only if the corresponding bit in binary number is 0. Otherwise,
the bit is set to 0.
Syntax
BITNOT(binary number)
Example
BITNOT(6)
Returns 65529. The 6 = 0...00110. Therefore, BITNOT(6) = 1...11001.
应该是将一整数返回一个十六进制的函数。
 
WHAT IS 将一整数返回一个十六进制的函数?

 
BITNOT 对应的是 inttohex ,对吗?
 
熟悉FOXPRO的朋友能给点意见吗?
 
其实你上面不是已经说的很清楚了吗,
BITNOT就是按位取反,就是not,不过要将值限定为Word,
Word(not 6) = 65529
 
顶部