1、微信小程序是一个免除下载安装直接使用的应用,使用微信【扫一扫】或者是【搜一搜】就可以打开应用。
2、微信小程序如今存在线下扫码、公众号关注、消息通知等多种功能。
3、在微信小程序中,可以向有所了解的技术员寻求帮助。他们会为客户查找微信小程序源码,这样我们就可以看到微信小程序源码了。
4、现如今各大企业项目公司都会培养一些专业的工作人员。他们会运用现有的技术查看源码。
5、查找小程序源码很简单,并且该源码会跟销售产品量成正比关系。
6、如下图,给我们的信息可以告诉我们查看微信小程序源码很有必要且又很有重要性。
7、对于查看微信小程序源码以及它的价值,如下图给与了详细解释。跟客户需求量很有关系。
8、如今网络市场发展十分迅速,微信小程序就是其中一个热门市场点,查看源码就是微信小程序最重要的地方。
import java.applet.Applet
import java.awt.Button
import java.awt.Color
import java.awt.Graphics
import java.awt.TextField
import java.awt.event.ActionEvent
public class Nicki extends Applet{
private static final long serialVersionUID = 1L
private Button ok
private int num=32
private int resu=0
private boolean isRig=false
private TextField iPut
public Nicki(){
this.setLayout(null)
ok=new Button("OK")
ok.setActionCommand(getName())
ok.setBounds(150, 150, 40, 20)
iPut=new TextField()
this.add(iPut)
iPut.setBounds(100, 150, 40, 20)
this.add(ok)
ok.addActionListener(new ButtonAction(this))
}
public void paint(Graphics g){
g.setColor(Color.white)
g.fillRect(0, 0, this.getWidth(), this.getHeight())
g.setColor(Color.BLACK)
g.drawString("Please guess a number ", 10, 20)
g.drawString("between 1 and 100", 10, 40)
if(isRig==false&&resu!=0){
if(resu>num){
g.drawString(""+resu+" is too big !", 10, 100)
}else if(resu<num){
g.drawString(resu+"is too small !", 10, 100)
}
}else if(isRig==true){
g.setColor(Color.GREEN)
g.drawString("Yes,"+resu+" is the right number", 10, 80)
g.drawString("Your are great! ", 10, 100)
g.setColor(Color.red)
g.drawString(resu+"!", 70, 120)
}
iPut.setText("")
g.drawString("Input the number:", 0, 150)
}
public void ButtonActionPerformed(ActionEvent e){
if(e.getActionCommand().equals("panel0")){
resu=Integer.parseInt(iPut.getText())
if(num==resu){
isRig=true
}else{
isRig=false
}
repaint()
}
}
}
class ButtonAction implements java.awt.event.ActionListener{
Nicki su
public ButtonAction(Nicki bun){
this.su=bun
}
public void actionPerformed(ActionEvent e) {
su.ButtonActionPerformed(e)
}
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)