File通過字串建立物件的幾種方式

2021-06-29 15:26:42 字數 581 閱讀 2269

第一種方式

// 將r.txt物件封裝為file物件,可以將已有的檔案或者還沒有出現的封裝為物件

file f1 = new file("r.txt");

第二種方式,指定目錄

file f2 = new file("c:\\b", "r.txt");

第三種方式,將目錄封裝為物件

file f = new file("c:\\b");

file f3 = new file(f, "r.txt");

file f4 = new file("d:\\ab\\c\\d.txt");// 注:\\分隔符只能在windows作業系統,不能跨平台

所以我們需要

file("d:"+file.separator+"ab"+file.separator+"c"+file.separator+"d.txt");

可以獲取系統分隔符

python通過字串獲取物件的屬性

有時候需要通過配置檔案的字串來獲取某個物件的屬性。舉個例子,假設在配置檔案中可以指定資料集名稱dataset name cococaptions 需要使用torchvision提供的資料集,但是其提供的資料集很多,如 lsun lsunclass fakedata cococaptions coco...

字串物件python int 字串 字串物件

最近研究字串物件,稍微總結一下,以後繼續補充 如果我們須要把python的字串物件轉換為數整物件,我們須要用到int方法。比如 ainfo 222 print int ainfo 輸出的結果是222。然後我們檢視下ainfo在現的型別,通過type方法檢視下,發現是 而如果ainfo fefew22...

字串的建立

string字串的建立可以通過string str1 hello 或者 string str2 new string hello 兩種形式。使用string str1 hello 這種方式建立字串的時候,jvm首先會檢查字串常量池中是否存在該字串的物件,如果已經存在,那麼就不會在字串常量池中再建立了...