1. “How Good is Good Enough?“ in Autonomous Driving? by H.P. Schoener
本文提出一個量化自駕車功能"是否夠好"的方法。
自動駕駛就是把人類開車時95%會做對的事情自動化,把剩下5%最小化。據統計,德國高速公路(Autobahn)平均每行駛750萬公里會有一次S0等級(S0是最輕微的)事故,也就是說自駕車測試至少要跑750萬公里且不能發生任何事故。
五大常見的意外起因:
Today we are gonna have a brief view over the Collection and Map interfaces in Java:
As following diagram shows, while they are all used to save a group of objects of same types, Sets, Lists, Queues and Deques belong to the Collection interface, whereas Maps have their own interface.
Reference: https://www.codejava.net/java-core/collections/java-map-collection-tutorial-and-examples
關於Java的Final關鍵字,Immutability與Thread Safety
1. Definition of "Thread safety": Multiple threads will access a shared object coordinately such that unsaved changes made by one thread would not be overwritten by the other.
How to achieve thread safety?