检查一个变量基本类型是否为指针类型.
IsPtr ( 变量 )
变量 | 要检查的变量/表达式. |
成功: | 返回 1,说明表达式类型是一个指针. |
失败: | 返回 0,说明指定的表达式并非指针类型. |
Example()
Func Example()
; Run Notepad
Run("notepad.exe")
; Wait 10 seconds for the Notepad window to appear.
Local $hWnd = WinWait("[CLASS:Notepad]", "", 10)
; Test if $hWnd is a valid pointer and display the results.
If IsPtr($hWnd) Then
MsgBox(4096, "", "It's a valid Ptr")
Else
MsgBox(4096, "", "It's not a valid Ptr")
EndIf
; Close the Notepad window using the handle returned by WinWait.
WinClose($hWnd)
EndFunc ;==>Example