Contents contributed and discussions participated by Benx Shen
jQuery Plugin - FlyDOM: Create DOM on the Fly - 0 views
-
FlyDOM aims to be an easy-to-use plugin for jQuery that makes generating dynamic content quick and easy.
» Microsoft Screen Sharing Software Available As Free Download » InsideMicro... - 0 views
Downloads - Yod'm 3D - 0 views
什麼鬼?竟然還可以有論壇!!! - 65 views
用Diff和Patch工具維護源碼 - PHP俱樂部 - 0 views
-
diff以"行"為單位比較兩個文本文件(也可以是目錄比較),並將不同之處以某種格式輸出到標準輸出上;patch可以讀入這種輸出,並按照一定指令使源文件(目錄)按照目標文件(目錄)更新
胡侃:面向对象思想的进化-FP-综合技术 -JavaEye做最棒的软件开发交流社区 - 0 views
-
面向對象編程思想的提出已經不是幾年而是幾十年了,考查其思想的變化,一方面是對現有語言的一些評判,另一方面,也算是對前輩計算機科學家的緬懷。 ——題記 Kristen Nygaard在1962年發明的 Simula 語言現在被認同為世界上第一種明確實現面向對象編程中某些"必要"元素(比如 class)的語言。Simula 是從 Algol 發展來的,可以說,是一種增加了 class 這個數據類型的 Algol,並將參數傳遞的默認模式從"按名調用"換成了"按引用調用",還提出了根據類型確定初始化過程的方法。 從 Simula 的時代開始,科學家們在解決軟件複雜度方面的思路開始"異常開闊"——當然也有資深的老派牛人們不這麼認為。比方說 Peter Norvig,寫了Design Patterns in Dynamic Programming一書來反駁。他認為設計模式早已體現在以 Lisp 為首的一批語言中了,根本不需要什麼面向對象。但我還是跟從偶像 Alan Kay 的觀點。某些時候,把一種特定的編程風格做進語言裡也是必要的。
Bertrand's weblog: When was this Java class compiled? - 0 views
-
When was this Java class compiled? Credits to Dmitry Beransky on the advanced-java@discuss.develop.com list. import java.util.Date; import java.io.IOException; public class When { public static void main(String args[]) throws IOException { Date d = new Date( When.class.getResource("When.class") .openConnection() .getLastModified() ); System.out.println("This class was compiled on " + d); } }
mod_rewrite Cookbook - FrontPage - 0 views
Groovy - User Guide - 0 views
-
Groovy way to implement interfaces
-
Groovy Categories
-
Scoping and the Semantics of "def"
- ...3 more annotations...
Groovy - Regular Expressions - 0 views
-
Groovy supports regular expressions natively using the ~"pattern" expression
-
// lets create a regex Pattern def pattern = ~/foo/ assert pattern instanceof Pattern
-
Groovy also supports the =~ (create Matcher) and ==~ (matches regex) operators.
- ...6 more annotations...
無類語言的OOP(JavaScript描述)-FP-綜合技術 -JavaEye做最棒的軟件開發交流社區 - 0 views
-
本文以 JavaScript 語言為例,介紹了無類面向對象語言中實現各種面向對象概念的方法。
-
無類語言的OOP(JavaScript描述)
Initialization on demand holder idiom - Wikipedia, the free encyclopedia - 0 views
-
public class Something { private Something() { } private static class LazyHolder { private static final Something something = new Something(); } public static Something getInstance() { return LazyHolder.something; } }
-
Java Singlton 模式的終極解決之道!
-
對了會發現這篇文章,是因為 http://www.eclipsezone.com/eclipse/forums/t97263.rhtml 這裡討論在 eclipse 裡如何使用最簡單的步驟創建一個 singlton 類別設計。
Groovy - Groovy Categories - 0 views
-
import groovy.xml.* def html = DOMBuilder.newInstance().html { head { title (class:'mytitle', 'Test') } body { p (class:'mystyle', 'This is a test.') } } use (groovy.xml.dom.DOMCategory.class) { assert html.head.title.text() == 'Test' assert html.body.p.text() == 'This is a test.' assert html.find{ it.tagName == 'body' }.tagName == 'body' assert html.getElementsByTagName('*').grep{ it.'@class' }.size() == 2 }
Java 編程的動態性,第 1 部分: 類和類裝入 - 0 views
Java object queries using JXPath - Java World - 0 views
-
Java object queries using JXPath Query complex Java object trees using the XPath expression language
openjfx: openjfx: JavaFX編程語言 - 0 views
-
JavaFX Script™ (下文中成為JavaFX)語言是一種聲明式的靜態類型編程語言。它具有第一級函數(first-class functions)、聲明式的語法、列表推導(list-comprehensions)及基於依賴關係的增量式求值(incremental dependency-based evaluation)等特徵。JavaFX 腳本式語言特別適用於Java2D swing GUI組件,它允許簡單地創建圖形界面。 譯者註:第一級函數指函數被當作對象對待,可以在運行時賦值、傳遞和返回。詳見wikipedia上的解釋。 譯者註:列表推導指一種在函數語言中的表達式,它表示了在一個或者多個列表的成員(被選擇的)進行某種操作的結果。它被稱為"syntactic sugar",即為開發者提供了便捷的多種函數的應用組合。詳見FOLDC對list comprehension的解釋。 本文檔給出了JavaFX 腳本式編程語言的非正式描述。
從分佈式系統的角度看REST-企業應用-Java -JavaEye做最棒的軟件開發交流社區 - 0 views
-
從REST具備的內在特徵來說,它包括了這些特徵: 1、基於HTTP的資源 2、以HTTP協議去操作 3、數據和表象分離
« First
‹ Previous
201 - 220 of 236
Next ›
Showing 20▼ items per page