請在win10下裝Linux子系統
herrDeng網內搜尋

自訂搜尋
Ads
2019年9月16日 星期一
2019年9月10日 星期二
C++很舊但也很新,簡介
C/C++很低階又可以很高階,彈性很大, 很舊,卻但又很新,有STL實作了各種資料結構,有 Lambda語法,還支援平行化(從向量平行化、多重執行緒、GPU平行化),能寫病毒。 C++可用的外掛一堆, 如boost、openCV可用Visual Studio, DevC++(久未有維護), CodeBlocks, Eclipse編譯,還能找到支援Blockly技術的.....
2019年9月5日 星期四
Ex1. 請找出IEEE Spectrum & Tiobe最新程式語言排名....
請回答下列問題:
1. 請找出IEEE Spectrum & Tiobe最新程式語言排名
2. 甲骨文在2010年控告Google開發的Android侵犯其Java專利之結局與感想
2019年9月1日 星期日
ex1.幾個Linux指令
ls
ls -al
echo
cat
mkdir
pwd
who
whoami
cd
rmdir
rm
cp
mv
grep
find
man
ping
ifconfig
ps
top
reboot
firefox anwendeng.blogspot.com/2019/09/ex1linux.html&
history
shutdown
========
sudo apt-get update
sudo apt-get upgrade
sudo apt-get install build-essential
sudo apt-get install synaptic
========
作業:練習20個以上的Linux指令
然後
history > hh.txt
cat hh.txt
ls -al
echo
cat
mkdir
pwd
who
whoami
cd
rmdir
rm
cp
mv
grep
find
man
ping
ifconfig
ps
top
reboot
firefox anwendeng.blogspot.com/2019/09/ex1linux.html&
history
shutdown
========
sudo apt-get update
sudo apt-get upgrade
sudo apt-get install build-essential
sudo apt-get install synaptic
========
作業:練習20個以上的Linux指令
然後
history > hh.txt
cat hh.txt
2019年8月23日 星期五
2019年8月12日 星期一
2019年8月11日 星期日
2019年8月2日 星期五
2019年7月28日 星期日
2019年7月24日 星期三
C++使用boost::filesystem找某個目錄下所有的png, bmp圖檔
誰說C++只是老式的C加上cin, cout和一點點的class?
雖然VC++也有提供filesystem,除標頭檔要加入filesystem外,
需using namespace std::experimental::filesystem;
還有compile by using: /EHsc
還是使用boost::filesystem乾脆。
當中用到class recursive_directory_iterator; C++17開始列入標準,boost還是遠走在C++標準之前。
訂閱:
文章 (Atom)
熱門文章
-
請用CPU-Z軟體檢測Cache & Memory 註:快取(L1-L3: SRAM) 第一級快取(L1)–通常存取只需要幾個週期,通常是幾十個KB。 第二級快取(L2)–比L1約有2到10倍較高延遲性,通常是幾百個KB或更多。 第三級快取(L3)(不...
-
C++ DP速解難題leetcode 3363 Find the Maximum Number of Fruits Collected [Python解請進]
-
計算gcd(123456789,999999999)
-
需要練習的Java程式:
-
輸入字串s 輸入int x 輸出 x個s
-
Leetcode 342 Power of Four幾個C++一行解 [codes on Leetcode] https://leetcode.com/problems/power-of-four/solutions/7081839/9-ways-of-bit-manipula...
-
問int怎麼存-689這個數字。 int用4個bytes。 答案請用16進位表達。