當前位置:首頁 » 編程軟體 » 編譯器字體

編譯器字體

發布時間: 2022-01-31 21:23:57

❶ 您好,謝謝您今天幫助解答了我的疑問,請問一下您有高亮顯示和彩色字體的c語言編譯器是什麼啊

dev-cpp這個具有這一功能。
但是縮進效果不是太理想。
codeblocks效果不錯,但是編譯器配置不是很好。
另外,單獨的文本編輯器NotePad++很不錯,推薦結合dev-cpp一起使用。

❷ 請問,DEV-C++5.3.0.3編譯器,工具->編輯器選項->顯示->編輯器字體,默認的是什麼

Courier New

❸ MPLAB IDE v7.50軟體picc編譯器程序字體(大小)怎麼調,小弟謝啦!

呵呵,你的版本有點低啊,我現在用的是8.46的。在MPLAB IDE軟體的PICC編譯器中,程序的字體大小是不能設置,都是默認字體大小。看習慣了就好,我現在也是在用MPLAB IDE軟體,用的是4012的晶元,有興趣可以和我交流!QQ:1002311294,不知道這樣回答你是否滿意!

編程用哪種格式的字體最好

寫代碼用的等寬字體是否合適,最重要的判斷標准就是辨識性。

非常簡單的辦法:數字0、大寫字母O、數字1、小寫字母l,這是四個字元打在一起用你准備使用的字體預覽一下,如果你不能輕易分辨,我勸你還是放棄吧!所以我看了大家推薦的這些字體,大多數不是太適合的。

推薦:特別是Inconsolata在github網頁鏈接

❺ 用java製作一個簡單的文本編譯器,要能保存、打開,並對打開的文字進行字體、顏色、大小的設置~幫忙好嗎

import javax.swing.*;
import java.awt.event.*;
import java.awt.*;
import java.io.*;

public class wawu{
public static void main(String args[]){
EditWindowKeyEvent win=new EditWindowKeyEvent();
win.setVisible(true);
win.setTitle("Notebook");
}
}

class EditWindowKeyEvent extends JFrame implements ActionListener {
int s=14,f=Font.PLAIN;
JMenuBar menubar;
JMenu menu1,menu2,color,font,size;
JMenuItem open,save,red,blue,yellow,green,bold,italic,size16,size32,size48,size64;
JTextArea text;
JFileChooser fileDialog;
BufferedReader in;
FileReader fileReader;
BufferedWriter out;
FileWriter fileWriter;
EditWindowKeyEvent(){
init();
setBounds(150,160,280,290);
setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
}
void init(){
menubar=new JMenuBar();
menu1=new JMenu("File");
menu2=new JMenu("Format");
open=new JMenuItem("Open");
save=new JMenuItem("Save");
color=new JMenu("Color");
font=new JMenu("Font");
size=new JMenu("Size");
red=new JMenuItem("Red");
yellow=new JMenuItem("Yellow");
green=new JMenuItem("Green");
blue=new JMenuItem("Blue");
bold=new JMenuItem("Bold");
italic=new JMenuItem("Italic");
size16=new JMenuItem("Size16");
size32=new JMenuItem("Size32");
size48=new JMenuItem("Size48");
size64=new JMenuItem("Size64");
menubar.add(menu1);
menubar.add(menu2);
setJMenuBar(menubar);
fileDialog=new JFileChooser();
menu1.add(open);
menu1.add(save);
menu2.add(color);
menu2.add(font);
color.add(red);
color.add(yellow);
color.add(green);
color.add(blue);
font.add(bold);
font.add(italic);
font.add(size);
size.add(size16);
size.add(size32);
size.add(size48);
size.add(size64);
text=new JTextArea();
text.setEditable(true);
add(new JScrollPane(text),BorderLayout.CENTER);
open.addActionListener(this);
save.addActionListener(this);
color.addActionListener(this);
font.addActionListener(this);
red.addActionListener(this);
yellow.addActionListener(this);
green.addActionListener(this);
blue.addActionListener(this);
bold.addActionListener(this);
italic.addActionListener(this);
size16.addActionListener(this);
size32.addActionListener(this);
size48.addActionListener(this);
size64.addActionListener(this);
}
public void actionPerformed(ActionEvent e){

if(e.getSource()==open){
int state=fileDialog.showOpenDialog(this);
if(state==JFileChooser.APPROVE_OPTION){
text.setText(null);
try{
File dir=fileDialog.getCurrentDirectory();
String name=fileDialog.getSelectedFile().getName();
File file=new File(dir,name);
fileReader=new FileReader(file);
in=new BufferedReader(fileReader);
String s=null;
while((s=in.readLine())!=null){
text.append(s+"\n");
}
in.close();
fileReader.close();
}
catch(IOException exp){}
}
}
else if(e.getSource()==save){
int state=fileDialog.showSaveDialog(this);
if(state==JFileChooser.APPROVE_OPTION){
try{
File dir=fileDialog.getCurrentDirectory();
String name=fileDialog.getSelectedFile().getName();
File file=new File(dir,name);
fileWriter=new FileWriter(file);
out=new BufferedWriter(fileWriter);
out.write(text.getText());
out.close();
fileWriter.close();
}
catch(IOException exp){}
}
}
else if(e.getSource()==red){
text.setForeground(Color.red);
}
else if(e.getSource()==blue){
text.setForeground(Color.blue);
}
else if(e.getSource()==green){
text.setForeground(Color.green);
}
else if(e.getSource()==yellow){
text.setForeground(Color.yellow);
}
else if(e.getSource()==bold){
f=Font.BOLD;
}
else if(e.getSource()==italic){
f=Font.ITALIC;
}
else if(e.getSource()==size16){
s=16;
}
else if(e.getSource()==size32){
s=32;
}
else if(e.getSource()==size48){
s=48;
}
else if(e.getSource()==size64){
s=64;
}

Font F=new Font(null,f,s);
text.setFont(F);

}
}

❻ 各位大哥賜教unsp IDE編譯器怎麼改變字體

之前接觸過51系列的單片機的編譯器Keilc51 請問這和凌陽的unSP IDE2.0.0希望高手不吝賜教問題補充但是unsp ide環境中支持模擬。現在的IDE開發環境都

❼ eclipse編譯器如何更改字體大小

eclipse 字型大小大小: preference – general – appearance – colors and fonts – basic – Text Font,如下圖所示:

❽ 在c語言的vc++6.0的編譯器下怎麼輸出大點的字體。

打開VC++6.0,

1、會看到「工具」

OK了

python那種編譯器可以設置成如圖所示的樣式。

像是Eclipse的pydev插件,挺像的

其實不管啥ide,字體,背景,都是可以調整的,適合自己的就是最好的。

❿ DEV C++ 菜單 欄 裡面的字體大小,編譯器的大小和間距可以調解大小,但是菜單欄好小。

點擊」工具「--「環境選項」--「圖標」

(重裝了下Dev-c++,然後找調圖標大小的按鍵找了一晚上,(。•́︿•̀。))

熱點內容
android播放mp3 發布:2024-04-25 02:36:17 瀏覽:960
qq群里上傳的文件怎麼刪除 發布:2024-04-24 22:13:21 瀏覽:357
途岳配置升級了什麼 發布:2024-04-24 21:55:55 瀏覽:886
刷機安卓10狀態欄圓角如何修復 發布:2024-04-24 21:24:00 瀏覽:135
創建sql資料庫的命令是什麼 發布:2024-04-24 21:23:58 瀏覽:43
不是安卓該如何下載畫質怪獸 發布:2024-04-24 21:18:51 瀏覽:701
php載入網頁 發布:2024-04-24 21:15:20 瀏覽:161
遠程伺服器更換ip地址 發布:2024-04-24 21:14:43 瀏覽:528
什麼時候上線華為方舟編譯器軟體 發布:2024-04-24 21:10:21 瀏覽:631
安卓布局文件指的是哪個 發布:2024-04-24 21:08:05 瀏覽:889