當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Processing PrintWriter.println()用法及代碼示例


Processing, 類PrintWriter中的println()用法介紹。

用法

  • pw.println(data)

參數

  • pw PrintWriter 類型的任何對象
  • data 布爾、字節、字符、顏色、整數、浮點數、字符串

說明

將數據寫入PrintWriter 對象流,然後開始新的一行。

例子

PrintWriter output;

void setup() {
  // Create a new file in the sketch directory
  output = createWriter("positions.txt"); 
}

void draw() {
  point(mouseX, mouseY);
  output.println(mouseX);  // Write the coordinate to the file
}

void keyPressed() {
  output.flush();  // Writes the remaining data to the file
  output.close();  // Finishes the file
  exit();  // Stops the program
}

相關用法


注:本文由純淨天空篩選整理自processing.org大神的英文原創作品 PrintWriter.println()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。