一般的に言えば(これは、ルールによって設定されたものではなく、疑似コードを完全に使用する方法です)私は疑似コードを使用して、ボイラープレートや構文的に正しいものを取り除きます。
たとえば、次の Java コードがあるとします...
import java.io.*;
class FileRead
{
public static void main(String args[])
{
try{
// Open the file that is the first
// command line parameter
FileInputStream fstream = new FileInputStream("textfile.txt");
// Get the object of DataInputStream
DataInputStream in = new DataInputStream(fstream);
BufferedReader br = new BufferedReader(new InputStreamReader(in));
String strLine;
//Read File Line By Line
while ((strLine = br.readLine()) != null) {
// Print the content on the console
System.out.println (strLine);
}
//Close the input stream
in.close();
}catch (Exception e){//Catch exception if any
System.err.println("Error: " + e.getMessage());
}
}
}
疑似コードとしての私の解釈は次のようになります...
main() {
FileInputStream fstream = new FileInputStream(fileLocation);
BufferedReader br = BufferedReader(.....fstream);
String str;
while(br.readline!=empty, str=br.readline) {
System.out(str);
}
}
このコードはおそらく私以外には役に立たないでしょう。会議などで簡単なメモを作成するのに適しています。高速な疑似コードを作成しようとしている場合、例外処理などは考慮していません。