LlAbs/ko
< LlAbs
Jump to navigation
Jump to search
Revision as of 11:31, 3 March 2009 by Nanjido Oh (talk | contribs) (New page: {{LSL_Function/ko |func=llAbs |func_id=6|func_sleep=0.0|func_energy=10.0 |func_footnote |p1_type=integer |p1_name=val |p1_desc=모든 정수 |return_type=integer |return_text=정수 '''val...)
주의
- -2147483648의 llAbs는 -2147483648인데, 2147483648은 유효한 정수값이 아니기 때문이다.
예제
<lsl>// 매우 간단한 예제. default {
state_entry() { llSay(0,"The absolute value of -4 is: "+(string)llAbs(-4) ); }
}</lsl>
<lsl>// 조금 복잡한 예제 ShowAbsolute(integer X) {
string Message = "llAbs(" + (string)X + ") --> " + (string)llAbs(X); llSay(PUBLIC_CHANNEL, Message);
} default {
state_entry() { ShowAbsolute(-3); ShowAbsolute(5); ShowAbsolute(-20); ShowAbsolute(0); }
}</lsl>
// 조금 복잡한 예제의 실행결과는 다음과 같다: Test Object: llAbs(-3) --> 3 Test Object: llAbs(5) --> 5 Test Object: llAbs(-20) --> 20 Test Object: llAbs(0) --> 0
함께 보기
이 글이 유용하지 않으세요? LSL Wiki의 관련항목이 도움을 줄 수 있을 지도 모릅니다.