Javaに投稿されたコード一覧
/** * 数値を表すノードです。 */ public class Numeric implements Node {
/** * 構文木のノードです。 */ public interface Node {
int w = 200, h = 300; //PImage flip = createImage(w, h, ARGB); //不要 PGraphics g = createGraphics(w, h, JAVA2D);
int w = 200, h = 300; PImage flip = createImage(w, h, ARGB); PGraphics g = createGraphics(w, h, JAVA2D);
package com.tatesuke.javalab; import java.awt.Dimension; import java.awt.MouseInfo; import java.awt.PointerInfo;
final int MAX_POINT = 180; final int RADIUS = 150; final int POINT_SIZE = 5; PVector[] point = new PVector[MAX_POINT];
final int MAX_POINT = 180; final int RADIUS = 150; final int POINT_SIZE = 5; PVector[] point = new PVector[MAX_POINT];
public class Main { public static void main(String[] args) { Foo foo = new FooLogger(new FooImpl());
public class FooLogger implements Foo { private Foo foo; public FooLogger(Foo foo) {
public class Main { private Foo foo;