zoukankan      html  css  js  c++  java
  • 通过实例学习Virtools脚本语言VSL 从数组读取字符串

    该系统演示了怎样用VSL从数组读取字符串,它是习题4的逆过程。

    1. 开始,创建一个数组,进入"Array Setup"面板对它进行编辑。
      根据你的喜欢穿件一些列(Column),并创建几行。
      现在再在每个单元格中填充一些文本。
    2. 你的数组可能会像下面这个样子:

    3. 在层级(Level)下创建一个脚本,并添加一个Run VSL BB。在VSL Script Manager工作区中,为该BB添加一个名为的"myarray"的pIn参数,类型为"Array"。编辑该参数,并将它设置给你的数组。
      void main()
      {
      // Array where we will put the strings that will be read.
      ArrayString arrayString;

      // String as temporary buffer.
      String tmp;

      // Loop to read each array's cell.
      for (int c = 0; c < myarray.GetColumnCount(); ++c) {
      for (int r = 0; r < myarray.GetRowCount(); ++r) {

      // First we get the size of the string at pos (r, c)
      // (zero included)

      int lengthToRead = myarray.GetElementStringValue(r, c, null);

      // Then we resize the string before reading the array.
      tmp.Resize(lengthToRead-1);

      // At last, we can read the string.
      // Note that 3rd parameter of GetElementStringValue is a str
      // and not an String.

      myarray.GetElementStringValue(r, c, tmp.Str());

      // We keep the read string in our array.
      arrayString.PushBack(tmp);
      }
      }

      // We can do what we want with these strings.
      int stringNb = arrayString.Size();
      for (int i = 0; i < stringNb; ++i) {
      bc.OutputToConsole(arrayString[i].Str());
      }
      }


    现在可以去看看Virtools Minisite 中提供更多的VSL技术性样例,位置在Dev的文档文件夹下 /CMOS/TechnicalSamples/VSL/Samples/.。

    本文来源:http://www.cnblogs.com/x3d/,转载请注明。
  • 相关阅读:
    Java学习笔记1---JVM、JRE、JDK
    Java学习笔记2---设置环境变量JAVA_HOME,CLASSPATH,PATH
    第一次博客作业
    2018-2019-2 《Java程序设计》第5周学习总结
    作业四——文法和语言总结与梳理
    作业三——语法书、短语、直接短语、句柄
    作业二——文法和语言
    团队项目-需求分析报告
    团队项目-选题报告
    第一次结对编程作业
  • 原文地址:https://www.cnblogs.com/x3d/p/2661391.html
Copyright © 2011-2022 走看看