C 的功能總結

2021-08-05 20:26:02 字數 2418 閱讀 4495

1. 加在字串前面,字串中的 \ 失去轉義符的作用,直接寫字串而不需要考慮轉義字元

c#** 

string

path = @

"c:\windows\"

; // 如果不加 @,編譯會提示無法識別的轉義序列

// 如果不加 @,可以寫成如下

string

path2 = 

"c:\\windows\\";

[c#]view plain

copy

string

path = @

"c:\windows\"

; // 如果不加 @,編譯會提示無法識別的轉義序列

// 如果不加 @,可以寫成如下

string

path2 = 

"c:\\windows\\"

;  

2. 加在字串前面,字串中的 " 要用 "" 表示

c#** 

string

str = @

"aaa="

"bbb""";

// 不加 @,可以寫成

string

str2 = 

"aaa=\"bbb\"";

[c#]view plain

copy

string

str = @

"aaa="

"bbb"

"";  

// 不加 @,可以寫成

string

str2 = 

"aaa=\"bbb\""

;  

3 加在字串前面,換行空格都儲存著,方便閱讀**

c#** 

string

insert = @"

insert into users

(userid,

username,

email

) values

(@userid,

@username,

@email

)";

[c#]view plain

copy

string

insert = @"  

insert into users  

(  userid,  

username,  

email  

) values  

(  @userid,  

@username,  

@email  

)";  

4 用關鍵字做變數時在關鍵字前面加@

c#** 

string

@operator

= "+"

;string

@class

= "分類一"

;console.writeline(@

operator

);console.writeline(@

class);

[c#]view plain

copy

string

@operator

= "+"

;  string

@class

= "分類一"

;  console.writeline(@operator

);  

console.writeline(@class

);  

5 作為sql語句裡的乙個「標籤」,宣告此處需要插入乙個引數

c#** 

string

delete = 

"delete from categery where categoryid=@categoryid"

;sqlconnection connection = 

new

sqlconnection(

"connectionstring"

);sqlcommand command = 

new

sqlcommand(delete, connection);

command.parameters.add(

"@categoryid"

, sqldbtype.bigint);

分頁功能總結

一進專案組就跟分頁結下了不解之緣。這段時間以來做的最多的功能還是分頁的實現 更新和維護。今兒下午手頭兒的活兒做完了,抽空兒把這段時間來做的功能總結一下。先來點兒比較文學性的東西 分頁原理 分頁顯示,是將資料庫中的結果集人為的分成一段一段的來顯示即可。query.scroll 和query.setfi...

dpdk LRO功能總結

dpdk版本 dpdk stable 16.11.1 程式路徑 example vhost 啟用dpdk的lro static struct rte eth conf default port conf rx adv conf txmode rte eth dev configure port,rx...

SysTick功能總結

按1ms來設定systick,也可以除以1000000。按1us來設定 systick config systemcoreclock 1000 systick開啟系統tick定時器並初始化其中斷,1ms cycles per microsecond static volatile uint32 t ...