4
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

プラグインとライブラリーの違いについて

Posted at

#プラグインとライブラリーの違い
プラグインもライブラリーも共にメインのプログラムから呼ばれるサブプログラム群やツールのようなものですが、アーキテクチャの視点からは大きな違いがあります。

プラグインとライブラリーの違いについて簡単に書いてみます。

##プラグイン
プラグインはメインのプログラムのインターフェイスに依存して作成されます。

メインのプログラムはプラグインに依存せず、他のプラグインに差し替えて動作させることが可能です。

##ライブラリー

ライブラリーはその逆で、メインのプログラムがライブラリーのインターフェースに乗っ取って構築されます。

メインのプログラムはライブラリーに依存することになり、ライブラリーを別のライブラリーに差し替えるということが困難となります。

4
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?