看板 Soft_Job 關於我們 聯絡資訊
#每日新聞 # 2020-2-18 每日新聞 # FB: http://bit.ly/2UizW6X # UniverSity 開源了 steam http://bit.ly/2HzAzl0 repo http://bit.ly/39TrUGv # C++: Move就是這麼簡單 Move語意很簡單的 大家別想太難,這文章就是想表達這件事 http://bit.ly/2SC4G1A # C++20: std::format簡單好用 過去的C++ ```cpp #include <cstdint> #include <iomanip> #include <iostream> void log_error(std::ostream& log, std::uint_least8_t squishiness) { log << "Invalid squishiness: " << std::setfill('0') << std::setw(2) << std::hex << squishiness << "\n"; } ``` 現在的C++ ```cpp #include <cstdint> #include <format> #include <iostream> void log_error(std::ostream& log, std::uint_least8_t squishiness) { log << std::format("Invalid squishiness: {:02x}\n", squishiness); } ``` http://bit.ly/2P3GNxH # CSS: 聽一下你的網頁更新 當你想知道你的網頁是不是過度頻繁的更新 可以用下面這段程式來聽聽看 他會在每次網頁更新時beep http://bit.ly/2wrVW5F # Lua: Effil 多緒庫 讓lua 得到multithreading 的能力 支援 lua 5.1, 5.2, 5.3, LuaJIT http://bit.ly/2u3k0uC # Python: 用android做出3D掃描機 http://bit.ly/2SSfBDf # GO: 視覺化解說GO的記憶體管理 http://bit.ly/38DRRcy -- ※ 發信站: 批踢踢實業坊(ptt.cc), 來自: 114.43.90.183 (臺灣) ※ 文章網址: https://www.ptt.cc/bbs/Soft_Job/M.1581993810.A.415.html
plsmaop: C++20 讚讚 02/18 12:02