• epson Robot 指令集合


    *******************************************************************

    目的:定义一个整型数据

    原型:Integer varName[(subscripts)],varName[(subscripts)],...........  

    解释:Integer is used to declare variables as type Integer.  Variables of type Integer can contain(包含) whole numbers with values between -32768 to 32767.  

    Local variables should be declared at the top of a function.  Global and module variables must be declared outside of functions.

    Example:

     Integer A(10) 'Single dimension array of integer 
      Integer B(10, 10) 'Two dimension array of integer
      Integer C(5, 5, 5) 'Three dimension array of integer
      Integer var1, arrayvar(10)
      Integer i

    *****************************************************************************************

    目的:数据的附加修饰。

    原型:

    全局类型数据:Globle [Preserve] dataType varName [(subsricpts)],varName [(subsricpts)],..........

    模块类型数据:

    局部类型数据:

     

    特别说明:对于全局变量还可以继续使用Preserve。 这样这个数据就可以保存下来。。

    Example:

    局部变量的声明 

    Function main

    Integer i

    Fend

    模块内变量的声明

    Integer m_i

    Function main

    Fend

    全部变量(全局保护变量)的声明

    Globle (Preserve) Integer g_i

    Function main

    Fend

    ******

    后记:细心的同学发现了 我在声明 模块变量和全部变量的时候 使用前缀 m_ 和g_   ,这是优秀程序员的基本素养。

    这样以后看到变量的时候 就知道这个什么作用域的变量,提高代码的阅读体验。

    ×××××××××××××××××××××××××××××××××××××××××××××××××××××

  • 相关阅读:
    矢量坐标矩阵 为了方便求叉乘
    力矩 是形容物理转动效果的量
    科式力 河流右边冲刷严重
    科式力
    证明科式力 coriolis acceleration
    叉乘的求导证明
    spring webFlux的认识
    [转] DB2错误代码说明
    MySQL事务及其实现
    MySQL基础架构之查询语句执行流程
  • 原文地址:https://www.cnblogs.com/wenluderen/p/4317744.html
Copyright © 2020-2023  润新知