結構體種const的使用場景(7)

2022-09-09 04:21:12 字數 474 閱讀 9885

作用:用const來防止誤操作

使用場景:

1 #include 2 #include 

3using

namespace

std;45

//定義學生結構體

6struct

student7;

1213

//使用位址傳遞和引用的方式,可以減少記憶體空間,而且不會複製出新的副本來

14void print_stu_info(const

struct student *p)

1519

2021

int main(void)22

;2526//

通過函式來列印學生資訊

27 print_stu_info(&s);

2829 system("

pause");

30return0;

31 }

Redis常見7種使用場景

1.簡單字串快取實戰 redis connect 127.0.0.1 6379 strcachekey test bihu set 應用 arrcachedata name job 男 age 30 redis set strcachekey,json encode arrcachedata red...

scala中「 」的4種使用場景

表示函式的返回型別 function type scala def double x int int x 2 double x int int 定義乙個函式變數 scala var x int int double x int int 呼叫 scala x 2 res1 int 4 函式double...

scala中「 」的4種使用場景

scala def double x int int x 2 double x int int 定義乙個函式變數 scala var x int int double x int int 呼叫 scala x 2 res1 int 4 函式double的型別就是 x int int 或者 int i...