韌館-LearnHouse

Archive for the '文獻參考' Category

[轉載]何謂反射(Reflection)

先記錄網址,有空再整合

http://blog.csdn.net/ljphhj/article/details/12858767

http://www.ithome.com.tw/node/57227

2014年8 月 posted by admin in 文獻參考,程式&軟體 and have No Comments

Design Patterns (設計模式)

一年前我是剛出社會的菜鳥,主管跟我講到Design Patterns,那時,我對這名詞很陌生,所以聽完就忘了
一年後,主管又提到Design Patterns,很慚愧,我還是不太懂
但卻開始注意到設計模式這個名詞,一個系統要好維護,設計模式很重要
Survey後,覺得還是很抽象,可能程式看得不多,功力不夠,還是看不懂每種模式要表達的意思
所以只好遇到一種模式就在這記錄並學習,所以這篇文章會慢慢增長,一直到我遇到並了解下列不同的設計模式:

reference:http://www.sws.bfh.ch/~amrhein/ADP/HeadFirstDesignPatterns.pdf

生成模式 (Creational Patterns)
Abstract Factory、Builder、Factory Method、Prototype、Singleton

simple factoryReflection Factory

結構模式 (tructural Patterns)
Adapter、Bridge、Composite、Decorator、Facade、Flyweight、Proxy

行為模式 (Behavioral Patterns)
Chain of Responsibility、Command、Interpreter、Iterator、Mediator、Memento、Observer、State、Strategy、Template Method、Visitor
Read more...

2013年1 月 posted by admin in 文獻參考 and have No Comments

[Android]何謂Android Context?

以下是網路上找到的對android context的一些講解

在android中context可以作很多操作,但是最主要的功能是加載和訪問資源。在android中有兩種context,一種是 application context,一種是activity context,通常我們在各種類和方法間傳遞的是activity context。
比如一個activity的onCreate: Read more...

2012年12 月 posted by admin in 文獻參考,程式&軟體 and have No Comments

[轉載] HTTP 狀態碼

轉貼google的,寫得比微軟的還容易看得懂,在最後的參考來源會有google和微軟的

當向您的伺服器傳送一個要求,要求顯示您網站的網頁 (例如,在使用者在瀏覽器中存取您的網頁,或 Googlebot 檢索該網頁時),則您的伺服器會傳回 HTTP 狀態碼,以回應該要求。

此狀態碼會提供有關該要求的狀態的資訊。此狀態碼會向 Googlebot 提供有關您的網站和所要求的網頁的資訊。

Read more...

2012年11 月 posted by admin in 文獻參考 and have No Comments

DB2 SQL0964C The transaction log for the database is full. SQLSTATE=57011

紀錄一下,作量測很容易會讓資料庫塞太多東西,塞爆後會出現很多奇怪的問題

做DB2的插入操作報錯

db2 => insert into atmjobsts values ('20090805','2')
DB21034E The command was processed as an SQL statement because it was not a
valid Command Line Processor command. During SQL processing it returned:
SQL0964C The transaction log for the database is full. SQLSTATE=57011

原因:

緩衝池擴展失敗,由於可用的虛擬內存的大小不足

Read more...

2012年10 月 posted by admin in 文獻參考 and have No Comments

[轉載]如何比較Windows與Liunx下所產生的文字檔? (SOC) (NC-Verilog) (VCS) (UltraEdit)

Abstract
為了驗證RTL的結果是否與原本用C或者Matlab所描述的演算法等效,我們常會將Verilog與C或者Matlab的結果dump到文字檔,然後用UltraEdit比較,為什麼明明用UltraEdit看起來一樣,但使用UltraCompare比較卻不同呢?

Introduction
使用環境:Visual Studio 2010 + NC-Verilog 5.4 + UltraEdit 13.10a+2

本文將討論以下主題:

1.Windows與Linux文字檔格式的差異

2.為什麼用UltraEdit開啟Linux的文字檔與Notepad開啟結果不一樣?

3.如何使用UltraCompare比較Windows與Linux下所產生的文字檔?

4.Conclusion

Windows與Linux文字檔格式的差異

Read more...

2012年6 月 posted by admin in 文獻參考 and have No Comments