c 新的實用但容易忘記的方法

2021-04-24 07:17:33 字數 947 閱讀 7519

1.

public

static

string

join(

string

separator,

string

value)

在指定

string 陣列的每個元素之間串聯指定的分隔符

string,從而產生單個串聯的字串。

如果 separator 為 null

nothing

nullptr

null 引用(在 visual basic 中為 nothing)

,則改用空字串 (empty)。

2.?? 運算子

如果 ?? 運算子的左運算元非 null,該運算子將返回左運算元,否則返回右運算元。

// ?? operator example. int? x = null;

// y = x, unless x is null, in which case y = -1. int y = x ?? -1;

3.string.

isnullorempty 方法

返回值型別:

system.

boolean

如果 value 引數為 null

nothing

nullptr

null 引用(在 visual basic 中為 nothing)

或空字串 (""),

則為 true;否則為 false

4.string.

format 方法

將指定的 string 中的格式項替換為指定的 object 例項的值的文字等效項

s = string.format( "(d) short date: . . . . . . . /n",datetime.now);

輸出:(d) short date: . . . . . . . 6/26/2004

提高java編碼效率的常用但容易忘記的方法

1.將集合分割成逗號分割的字串 list zoneids lists.newarraylist for propertyorderdeptconfresp propertyorderdeptconfresp propertyorderdeptconfresplist2 zoneidsstring s...

容易忘記的sql

mysql 三 表的操作 修改表 修改表名 alter table old table name rename to new table name 新增字段 在表的第乙個位置新增字段 alter table table name add column column name 資料型別 first 新...

linux命令容易忘記的

ls 命令 1 ls h human ls l d 查詢以d開頭的所有檔案資訊在該目錄下 2 ls d d 查詢以d開頭的所有目錄資訊 3 free m 查詢記憶體使用情況。4 du sh 資料夾 檢視資料夾下所有檔案的總大小。5 service mysqld start stop 啟動或關閉資料庫...