函数参考


IsPtr

检查一个变量基本类型是否为指针类型.

IsPtr ( 变量 )

参数

变量 要检查的变量/表达式.

返回值

成功: 返回 1,说明表达式类型是一个指针.
失败: 返回 0,说明指定的表达式并非指针类型.

注意/说明


相关

IsArray, IsFloat, IsHWnd, IsInt, IsString, IsNumber, IsBool, Ptr

示例/演示


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