Index
 
  Reference for Wiring 1.0 (ALPHA) 0017+. If you have a previous version, use the reference included with your software. If you see any errors or have any comments, let us know.
Name  

. (dot)

   
Examples  

Description   Provides access to an object's methods and data. An object is an instance of a class or datatype and contains is a grouping of methods (object functions) and data (object variables and constants). The dot operator directs the program to the information encapsulated within an object.

개체의 메소드 와 데이터를 결합합니다. 개체는 클래스 또는 데이터 유형이며 메소드와 데이터의 집합입니다. 도트 실행자는 프로그램이 개체를 포함하는 것을 지정합니다.

   
Syntax  
object.method()
object.data
   
Parameters  
object   the object you want to access
구동하기 원하는 개체
method()   method encapsulated in the object

개체에 포함할 메소드
data   variable or constant encapsulated in the object

개체에 포함될 변수 또는 상수
   
Usage   Web & Application