2017-11-30发表2022-07-27更新技术几秒读完 (大约80个字)使用 Markdown为什么使用 Markdown 看上去不错 既然看上去不错,为什么不试试呢 如何使用 Markdown1234567def show @widget = Widget(params[:id]) respond_to do |format| format.html # show.html.erb format.json { render json: @widget } endend 12345678910public void startThreadUseSubClass() { class MyThread extends Thread { public void run() { System.out.println("start thread using Subclass of Thread"); } } MyThread thread = new MyThread(); thread.start();}