package java.io; public interface ObjectOutput extends DataOutput { public void writeObject(Object obj) throws IOException; public void write(int b) throws IOException; public void write(byte b[]) throws IOException; public void write(byte b[], int off, int len) throws IOException; public void...
配列内の部分文字列は、入力シーケンス内で発生した順番に並んでいます。このパターンが入力シーケンスの部分シーケンスにマッチしない場合、結果として得られる配列は 1 つの要素、つまり文字列形式の入力シーケンスだけで構成されます。
@WebServlet("/hello") public class TimedDemo extends HttpServlet { private static final long serialVersionUID = -4751096228274971485L; @Override @Timed(value = "hello.world") protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { response....
@WebServlet("/hello") public class TimedDemo extends HttpServlet { private static final long serialVersionUID = -4751096228274971485L; @Override @Timed(value = "hello.world") protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { response....
classReducingSinkextends Box<U> implements AccumulatingSink<T, U, ReducingSink> { @Override public void begin(long size) { state = seed; } @Override public void accept(T t) { state = reducer.apply(state, t); } @Override public void combine(ReducingSink other) { ...
コールバックの順番が重要になる場合、Promise やイベントバスなどの仕組みを活用する Register as a new user and use Qiita more conveniently You get articles that match your needs You can efficiently read back useful information You can use dark theme ...
class Fuga #pink extends Hoge {} class "ぴよ" as Piyo #FFFFFF {} @enduml クラス名のうしろに#色と指定することで、そのクラスの背景色を指定できる 色には色名やカラーコードを指定できる extendsやimplementsをしている場合は、その手前に記載する ...
class Car extends Actor implements Drawable, Serializable ... しかし,コードを含めたいインタフェースが複数ある場合でも,それらのインタフェースすべてを抽象クラス にすると動作しなくなります.先ほど説明したように,クラスの場合,Javaでは1つしか継承できません(つま り,...
public class UserInitializer extends AbstractReactiveWebInitializer { @Override protected Class[] getConfigClasses() { return new Class[]{ WebConfig.class }; } } Java形式のBean定義ファイル: @Configuration @ComponentScan @EnableWebFlux public class WebConfig implements WebFluxConfigurer { } 2.3.6 イ...
public class ExtAction extends Action { // (1) public ActionForward execute( ActionMapping mapping, ActionForm form, HttpServletRequest req, HttpServletResponse res ) throws java.lang.Exception { - 14 - ExtActionForm eaf = (ExtActionForm)form; String name = eaf.getName( ); eaf.setName( nam...