Fight the Future

Java言語とJVM、そしてJavaエコシステム全般にまつわること

2008-02-04から1日間の記事一覧

JavaScriptのドット(.)演算子は処理コストを伴う

JavaScriptの配列をちゃんと理解する:JavaやCとは大違い - page2 - builder by ZDNet Japan http://builder.japan.zdnet.com/sp/javascript-kickstart-2007/story/0,3800083428,20366430-2,00.htm for (var i = 0; i < a.length; i++) { ... } ちなみに上の…

Introducing Apache Wicketの超意訳(9)

http://www.theserverside.com/tt/articles/article.tss?l=IntroducingApacheWicket After calling super(id), the SearchPanel adds the SearchForm (implemented as a private class). Let's look at the form class next. super(id)を呼び出したあと、Sea…

Introducing Apache Wicketの超意訳(8)

http://www.theserverside.com/tt/articles/article.tss?l=IntroducingApacheWicket There are two things that probably caught your eye in the markup. The first is the wicket:id="stylesheet" attribute on the element. This is the markup portion o…

Introducing Apache Wicketの超意訳(7)

http://www.theserverside.com/tt/articles/article.tss?l=IntroducingApacheWicket I've added three methods to the WicketApplication class. The first two provide access to the ContactDao used for persistence operations. The third overrides the…