2015年11月15日 星期日

151116 java多執行緒測試 Thread

上面是題目
我用了兩個執行緒來算pi,
第一個是讓程式一直遞回計算pi,
第二個是用來監視輸入的文字,
如果輸入0以外的值則會在螢幕印出目前用遞回算出的數字,
輸入0則會終止計算,
程是裡面用到的是繼承Thread,
而繼承Thread必須要有一個run{}來運行執行緒。

程式碼↓

 執行結果:
 ----
class a1105 extends Thread {
public static void main(String arg[]) {
a1105 pi = new a1105();
}
public a1105() {
Thread wating = new watinginput(this);
wating.start();
this.start();
}
public volatile String nnnnnn;
    public double pi=1,i=1;
public void pi() {
pi =pi*i*2/(2*i-1)*i*2/(2*i+1);
i=i+1;
}
public void run() {
System.out.println("run,pi/2=(2/1)*(2/3)*(4/3)*(4/5)*(6/5)*(6/7)...");
while (true) {
this.pi();
}
}
public class watinginput extends Thread {
private a1105 wtf;
private java.util.Scanner input;

public watinginput(a1105 aaa) {
this.wtf = aaa;
input = new java.util.Scanner(System.in);
}
public void run() {
String nnnnnn = input.nextLine();
while (!nnnnnn.equals("0")) {
System.out.println("pi=" + pi*2+",i="+i);
nnnnnn = input.nextLine();
}
System.exit(0);
}
}
}


2015年9月26日 星期六

0927 java Awt.Graphics2D畫圖



 終於用java畫出數據圖了!!
我先定義一個物件讓幫我讀檔 把數據存到矩陣中,
在用awt套件的Graphics2D畫圖,
畫數據圖的時候是以每一個點去畫一個1x1的矩形,
因為他沒有point的圖形可以用 所以用矩形代替,
畫的時候要呼叫物件讀取數據,
然後會用到try{__}catch (IOException e) {__},
我目前還不太懂這東西。。。因為eclipse幫忙除錯就用了它 哈哈哈

用java畫數據圖好麻煩。。。。。。。。
附上程式碼
----------------------------------------------------------------------------------------------
package factorial;

import java.awt.*;
import java.awt.event.*;
import java.io.BufferedReader;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.IOException;
import java.util.ArrayList;
import java.awt.geom.*;

public class Awt01 extends Frame {

static Awt01 frm = new Awt01();
static Graphics2D g2;

public static void main(String[] args) throws IOException {

Awt01 aa = new Awt01();
aa.bbb();
}

public double[] bbb() throws IOException {
frm.setTitle("Awt01");
frm.setSize(500, 600);
frm.setVisible(true);
FileReader fr = new FileReader("test.txt");
BufferedReader br = new BufferedReader(fr);
String line, tempstring;
String[] tempArray = new String[2];
ArrayList<String> myList = new ArrayList<String>();
int i = 0;
while ((line = br.readLine()) != null) {
// br.readLine()是讀取txt檔的每一行資料,把讀到的資料存到line
// 再將line丟給tempstring去儲存
tempstring = line;
// tempstring.split("\\s") 會依照空白鍵來切割,有幾個空白就切幾次
tempArray = tempstring.split("\\s");
// 按照順序.一行一行的儲存到動態陣列裡面
for (i = 0; i < tempArray.length; i++) {
myList.add(tempArray[i]);
}
}
// tempArray[]是String,一維矩陣
/*
* 轉換成double的二維矩陣 int k = myList.size() / 2; int count = 0; double[][]
* trans_array = new double[k][2]; for (int x = 0; x < myList.size() /
* 2; x++) { for (int y = 0; y < 2; y++) { trans_array[x][y] =
* Double.parseDouble((String) myList.get(count)); count++; //
* 一個index來決定myList讀取值的位置 } }
**/
// 轉換成double的一維矩陣
int k = myList.size();
int count = 0;
double[] trans_array = new double[k];
for (int x = 0; x < myList.size(); x++) {
trans_array[x] = Double.parseDouble((String) myList.get(count));
count++;
}
System.out.println(trans_array[3]);
return trans_array;
}

public void paint(Graphics g) {
Awt01 aa = new Awt01();

Graphics2D g2 = (Graphics2D) g;
Line2D linex = new Line2D.Double(0, frm.getHeight() * 5 / 6, frm.getWidth(), frm.getHeight() * 5 / 6);
Line2D liney = new Line2D.Double(frm.getWidth() / 6, 0, frm.getWidth() / 6, frm.getHeight());
g2.draw(linex);
g2.draw(liney);
try {
double[] wtf = aa.bbb();
int x1, y1;
double[] wtf2 = new double[3200];
System.out.println(wtf[50]+frm.getWidth() / 6);
for (int t = 0; t <= 1599; t++) {
y1 = t * 2;
x1 = t * 2 + 1;
wtf2[x1] = wtf[x1]* 24+frm.getWidth() / 6;
wtf2[y1] = wtf[y1]* -180+frm.getHeight() * 5 / 6;
Rectangle2D.Double r1 = new Rectangle2D.Double(wtf2[x1], wtf2[y1], 1, 1);
g2.draw(r1);
}
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}

}
}


150926 關於static 物件呼叫方法

函式 (方法 method)

static
有static 類別方法 ---不用先建構物件,可直接以類別呼叫該方法,例如 Integer.parseInt("123");
無static 物件方法-----必須先建構物件,再以物件名稱呼叫,例如 Test a=new Test(); a.ppp();

class Test{
public void ppp(){
System.out.println("物件方法");
}

public static void kkk(){
System.out.println("類別方法");
}
}


Test.kkk(); 正確
Test.ppp(); 錯誤
Test a=new Test();
a.ppp();//正確


----------------------------------------------------------
以下是我寫的範例參考,用來計算n!=多少。


class factorial {
public static void main(String[] args) {
long xxx, n;// 定義我們的答案xxx為長整數
// 定義a是一個factorial()類的新物件
factorial a = new factorial();
// 呼叫a物件的calcute函式,並且給這個函式一個值n(必須是常整數類型),calcute會回傳一個值
for (n = -1; n <= 5; n++) {
xxx = a.calculate(n);
// 在螢幕上顯示n階層=xxx
System.out.println(n + "!=" + xxx);
}
}

// 定義一個公開的函式名字叫做calculate,我們把她用來計算階層
// (long n1)表示它包含一個參數n1(常整數類型)
// 函式不包含void則需要回傳(return)一個值,return的類型是long
public long calculate(long n1) {
//如果n1等於0則回傳答案=1
if (n1 == 0)
return 1;
//如果n1<0則回傳答案等於0
if (n1 < 0)
return 0;
//定義一個ans為long,計算n!的答案
long ans = 1;
for (int i = 1; i <= n1; i++) {
ans = ans * i;
}
//回傳ans給xxx=a.calcute(n)
return ans;

}
}

執行結果










另外用public static long calculate(long n1)的方法如下圖,執行結果一樣。
//*****是原版的寫法




















































如果使用void的方法,將不會回傳值
會變成下面結果。。。














































2015年9月17日 星期四

0918 java long資料型態

關於long常整數的error,需要加一個L告訴編譯器這是一個較大的資料。

2015年9月16日 星期三

0916_simple_app 1+2+3+...=?

因為上課要跟大家分享java用途,
所以我做了一個簡單的app,幫你計算從1+2+3+...+n=?
開發軟體是用eclipse,
用到了 TextView ,EditText ,Button,
也有介紹到byte,short,int,long的資料型態,
簡報裡面有詳細的教學。


簡報和apk檔







2015年8月6日 星期四

150806

我想用java畫下面的函數圖

我先用上一篇貼的方法寫了可以讀取txt數據的程式
顯示的0.01代表成功讀到數據了

再來就遇到一些問題
原本想用g.drawString(".",x,y)把點畫上去,但是x,y只能用整數
後來用Graphics2D的drawString,也只能用到float浮點數

如果要用double的話 就剩下用Graphics2D去畫 Rectangle2D.Double(x,y,w,h,)
意思是畫一個很小的長方形看起來像一個點

最後寫完程式卻發現*.Double()裡面不能放陣列的數據......
只要裡面放了陣列就會變成這樣
弄了我兩三天了還是沒辦法解決....
打算先放著之後再回來研究了  (T-T)

--------------------------------------------------------
import java.awt.*;
import java.awt.event.*;
import java.io.BufferedReader;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.IOException;
import java.util.ArrayList;
import java.awt.geom.*;


public class Awt01 extends Frame{
//public double trans_array[][]; //二維矩陣
public double trans_array[];

static Awt01 frm =new Awt01();
static Graphics2D g2;

public static void main(String[] args) throws IOException {

frm.setTitle("Awt01");
frm.setSize(500,600);
frm.setVisible(true);

FileReader fr = new FileReader("test.txt");
BufferedReader br = new BufferedReader(fr);
String line, tempstring;
String[] tempArray = new String[2];
ArrayList<String> myList = new ArrayList<String>();
int i = 0;
while ((line = br.readLine()) != null) {
// br.readLine()是讀取txt檔的每一行資料,把讀到的資料存到line
// 再將line丟給tempstring去儲存
tempstring = line;

// tempstring.split("\\s") 會依照空白鍵來切割,有幾個空白就切幾次
tempArray = tempstring.split("\\s");

// 按照順序.一行一行的儲存到動態陣列裡面
for (i = 0; i < tempArray.length; i++) {
myList.add(tempArray[i]);
}
}
// tempArray[]是String,一維矩陣
/* 轉換成double的二維矩陣
int k = myList.size() / 2;
int count = 0;
double[][] trans_array = new double[k][2];
for (int x = 0; x < myList.size() / 2; x++) {
for (int y = 0; y < 2; y++) {
trans_array[x][y] = Double.parseDouble((String) myList.get(count));
count++; // 一個index來決定myList讀取值的位置
}
}**/
//轉換成double的一維矩陣
int k =myList.size();
int count=0;
double[] trans_array =new double[k];
for(int x=0;x<myList.size();x++){
trans_array[x] =Double.parseDouble((String) myList.get(count));
count++;
}
System.out.println(trans_array[3]);

}

public void paint(Graphics g) {
Graphics2D g2=(Graphics2D) g;
Line2D linex=new Line2D.Double(0,frm.getHeight()*5/6,frm.getWidth(),frm.getHeight()*5/6);
Line2D liney=new Line2D.Double(frm.getWidth()/6,0,frm.getWidth()/6,frm.getHeight());
g2.draw(linex);
g2.draw(liney);
//for (int t=0;t<5;t++){
Rectangle2D.Double r1=new Rectangle2D.Double(trans_array[t*2-1], trans_array[t*2], 1, 1);
g2.draw(r1);

//}




}
}

---------------------------------------------------------------------
150926 成功畫出東西了!!爽~
晚點再補齊內容







2015年8月3日 星期一

150803

eclipse的偏好設定
參考網站:http://j796160836.pixnet.net/blog/post/31387535-%5Bjava%5D-eclipse%E7%9A%84%E5%81%8F%E5%A5%BD%E8%A8%AD%E5%AE%9A(%E6%93%8D%E4%BD%9C%E7%BF%92%E6%85%A3%E5%92%8C%E5%A5%BD%E7%94%A8%E6%8A%80%E5%B7%A7)

快捷鍵
Ctrl + Shift + F  自動排版
Alt   +  /    開啟字彙選擇框(自動完成框)
Ctrl  +  D  刪除一行
Ctrl  +  /    註解/解除註解多行

Ctrl  +  L  到指定行號(一搬編輯器是Ctrl+G)
Ctrl  +  1   跳出修正建議框

----------------------------------------------------------
awt的繪圖
參考網站:http://web.thu.edu.tw/s922930/www/java%B8p%AD%D7%A4W/0724/ch20.pdf



2015年7月31日 星期五

java0731

1.Error: cvc-complex-type.2.4.d: 從元素 'd:skin' 開始找到無效的內容。此處未預期子項元素。
2.沒有顯示模擬器

-----------------------------------------------------------------------------------------------
解決辦法
 把三個已安裝的檔案移除
選取API22:Android5.1.1