以下脚本,定义两个一样的字符数组,对比后,打印出result的值:

Action()
{ int result;
char string1[] = "We can see the string:nancy";
char string2[] = "We can see the string:nancy";
lr_output_message("the string1 is %s.",string1);
lr_output_message("the string2 is %s.",string2);
result = strcmp(string1,string2);
if ( result == 0 )
{
lr_output_message("the result is 0.");
}
else
{
lr_output_message("the result is not 0.");
}
return 0;
}

  

  

运行结果:

Ending action vuser_init.
Running Vuser...
Starting iteration 1.
Starting action Action.
Action.c(7): the string1 is We can see the string:nancy.
Action.c(8): the string2 is We can see the string:nancy.
Action.c(12): the result is 0.
Ending action Action.
Ending iteration 1.
Ending Vuser...
Starting action vuser_end.
Ending action vuser_end.
Vuser Terminated.

代码2:

Action()
{ int result;
char string1;
char string2;
lr_save_string( "We can see the string:nancy","string1" );
lr_save_string( "We can see the string:nancy","string2" );
lr_output_message("the string1 is %s.",lr_eval_string("{string1}"));
lr_output_message("the string1 is %s.",lr_eval_string("{string2}"));
result = strcmp(lr_eval_string("{string1}"),lr_eval_string("{string2}"));
if ( result == 0 )
{
lr_output_message("the result is 0.");
}
else
{
lr_output_message("the result is not 0.");
} return 0;
}

  

运行结果:

Ending action vuser_init.
Running Vuser...
Starting iteration 1.
Starting action Action.
Action.c(9): the string1 is We can see the string:nancy.
Action.c(10): the string1 is We can see the string:nancy.
Action.c(14): the result is 0.
Ending action Action.
Ending iteration 1.
Ending Vuser...
Starting action vuser_end.
Ending action vuser_end.
Vuser Terminated.

最新文章

  1. Http请求
  2. Unity、Exception Handling引入MVP
  3. 关于语句#ifdef OS_GLOBALS #define OS_EXT #else #define OS_EXT extern #endif 的说明
  4. Understanding the WPF Layout System
  5. 关于linux密码忘记问题解决方法
  6. ean13码的生成,python读取csv中数据并处理返回并写入到另一个csv文件中
  7. Java SE 6 新特性: Java DB 和 JDBC 4.0
  8. 【网络流24题】 No.2 太空飞行计划问题 (最大闭合权图 最大流 )
  9. 8.2.1.13 Multi-Range Read Optimization 多个range 读优化
  10. 编译ycm库
  11. 一、爬虫的基本体系和urllib的基本使用
  12. myBatis源码学习之SqlSessionFactory
  13. ipad忘记了锁屏密码,已经越狱了
  14. java linux sdk1.8
  15. [翻译] ValueTrackingSlider
  16. 达芬奇TI DVSDK之视频数据流过程分析
  17. SpringBoot配置成Liunx服务
  18. Java第五次作业--面向对象高级特性(抽象类和接口)
  19. IE6支持min-width、max-width CSS样式属性
  20. Eclipse发布安卓APK包无图标的解决方法

热门文章

  1. Quartz的job中注入的services接口为空的解决办法
  2. JavaEE--JSP详解
  3. 微信小程序里多出来的奇怪宽度
  4. vue中如何开发插件
  5. drf三大认证解析
  6. Json解析报错: Error is : Unescaped control character...的解决方法
  7. 6U VPX 加固智能计算异构服务器
  8. javase中的super、this和protected关键字
  9. python打印实心等边三角形和空心等边三角形
  10. python之同步IO和异步IO