AutoHotKey(오토핫키) 설명서 * 연산자(메모리 주소)

Posted by 발전소장
2014. 8. 13. 18:07 AutoHotKey/Commands

* 연산자(주소에 격납된 값)

주소로 지정된 메모리 영역의 아르바이트치를 얻는 연산자

*Address

Parameters

인수명설명
Address메모리 영역의 주소를 나타내는 정수

Remarks

결과는Address그리고 나타내지는 메모리 영역의 아르바이트치(0...255)(이)가 된다.
「*Addr:=Asc("x")」(와)과 같이 대입 끝에는 할 수 없다.
값을 변경하려면 , 「DllCall("RtlFillMemory", UInt, Addr, UInt, 1 , UChar, Asc("x")) 」(와)과 같이 한다.

2아르바이트 이상의 값을 이득 싶으면,NumGet()함수를 사용하는 것이 좋다.

Related

, if(식), Var:=식

AutoHotKey(오토핫키) 설명서 * 연산자

Posted by 발전소장
2014. 8. 13. 17:59 AutoHotKey/Commands

* 연산자(곱셈)

2개의 식의 적을 돌려주는 연산자

Expression1*Expression2

Parameters

인수명설명
Expression1임의의 식
Expression2임의의 식

Related

, if(식), Var:=식