码迷,mamicode.com
首页 > 其他好文 > 详细

@符号的作用

时间:2020-05-01 20:49:56      阅读:80      评论:0      收藏:0      [点我收藏+]

标签:select   use   and   输出   pac   tps   src   作用   www   

 学习记录 

原文链接: https://www.cnblogs.com/cn-star/p/11872017.html

 

 “@”符号有如下三种作用:

  •    忽略转义字符的作用:

       例如,有时我们保存一条文件路径时;路径中“\”需要写成“\\”;第一眼看去容易让人混淆。而通过字符串前加@符号,就可以直接输入路径,忽略转义。

           string sPath = "D:\\192.168.12.34\\USER\\LOCAL.jpg";

           string sPathV = @"D:\192.168.12.34\USER\LOCAL.jpg";

                 输出结果为:

                         技术图片

  • 让字符串跨行

         未加“@”前:

           string str = "select * from U_Wippackage_notice "
                            + "where id=‘123456‘"
                               + " and name=‘张三‘";        

         加了“@”后:

            string str1 = @"select * from U_Wippackage_notice
                               where id=‘123456‘ 
                                   and name=‘李四‘";

 

  •  使关键字可以作为(类名、变量名、方法名、表空间名等)使用

 

    技术图片

 

    

@符号的作用

标签:select   use   and   输出   pac   tps   src   作用   www   

原文地址:https://www.cnblogs.com/susiesnai-sun/p/12814363.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!