bat文件中set和setlocal的用法

分享一下我老师大神的人工智能教程!零基础,通俗易懂!http://blog.csdn.net/jiangjunshow

也欢迎大家转载本篇文章。分享知识,造福人民,实现我们中华民族伟大复兴!

               

        set功能很强大的,如下:

@echo offset xxx = "hello world"set xyz = "batch"set xset xxx =set xset xyz set x
       其中set xxx = "hello world" 是定义变量,并把其值设定为"hello world". set x 是查询所有以x开头的变量,set xxx = 表示删除xxx这个变量。(单独一个set的作用是查看所有的当前环境所有变量,自己试一下就知道了)


      我们来看一下set的一个典型用法:

@echo offset /a sum = 0echo sum is %sum%set /a sum = sum + 1echo sum is %sum%set /a sum = sum + 1echo sum is %sum%set sum =
     千万要注意,/a不能少,否则结果错误。另外,用完sum后,记得要将sum删除。

     setlocal主要针对临时环境变量,不会影响到系统的变量环境设置,应与endlocal联用。


           

给我老师的人工智能教程打call!http://blog.csdn.net/jiangjunshow

这里写图片描述

你可能感兴趣的:(bat文件中set和setlocal的用法)