How to post a blog post with words in red font

table of Contents

Rich text editor

testing successfully

How to post red font on blog


Rich text editor

testing successfully

How to post red font on blog

It turns out that the rich text editor can only send red fonts

 

//启动 MyThread,需要首先实例化一个 Thread,并传入自己的 MyThread 实例:
MyThread myThread = new MyThread(); 
Thread thread = new Thread(myThread); 
thread.start(); 
//事实上,当传入一个 Runnable target 参数给 Thread 后,Thread 的 run()方法就会调用
target.run()
public void run() { 
 if (target != null) { 
 target.run(); 
 } 
}

Guess you like

Origin blog.csdn.net/qq_46914021/article/details/109185027