本文へスキップ
ログインすると広告が減り、学習に集中できます。
広告

検索結果- 英語 - 多言語

検索内容:

class adapter pattern

名詞

(software, object-oriented programming) An adapter pattern where the adapter is created by implementing or inheriting both the interface that is expected and the interface that is pre-existing.

日本語の意味
オブジェクト指向プログラミングにおけるデザインパターンの一つ。既存のクラス(既存のインターフェースを持つ)と、利用側が要求するインターフェースの両方を実装または継承することで、互換性のないインターフェース間の連携を可能にする手法。 / 期待されるインターフェースが定める機能を、既存のクラスの機能を利用して実現するためのパターンで、アダプタクラスが両方のインターフェースを取り扱うことで実現される。
英語の意味
(software, object-oriented programming) An adapter pattern where the adapter is created by implementing or inheriting both the interface that is expected and the interface that is pre-existing.
このボタンはなに?

レガシーシステムをアップグレードする際、既存のインターフェースを継承しつつ新しいサービスのAPIに適合させるために、クラスアダプタパターンを適用しました。

関連語

plural

class adapter patterns

名詞
活用形 複数形

plural of class adapter pattern

原形: class adapter pattern
日本語の意味
「クラスアダプタパターン」の複数形。
英語の意味
plural of class adapter pattern
このボタンはなに?

コードレビューで、保守性を向上させるために簡素化できる複数のクラスアダプタパターンを特定しました。

template method patterns

名詞
活用形 複数形

plural of template method pattern

原形: template method pattern
日本語の意味
「テンプレートメソッドパターン」の複数形(複数のテンプレートメソッドパターンを指す)
英語の意味
plural of template method pattern
このボタンはなに?

フレームワークを設計する際、開発者はしばしばテンプレートメソッドパターンの複数の事例に頼り、アルゴリズムの不変部分を定義しつつ、サブクラスが特定の手順を変更できるようにします。

template method pattern

名詞

(software, object-oriented programming) A behavioural software design pattern that defines the flow of the algorithm with the template method.

日本語の意味
テンプレートメソッドパターンとは、オブジェクト指向プログラミングにおける振る舞いに関するデザインパターンの一つで、アルゴリズム全体の流れをテンプレートメソッドとして定義し、その中の一部の処理をサブクラスでオーバーライドして具体的な処理を実装できるようにする方法です。
英語の意味
(software, object-oriented programming) A behavioural software design pattern that defines the flow of the algorithm with the template method.
このボタンはなに?

新しいフレームワークを設計する際、アルゴリズムの全体的な流れを定義しつつ、サブクラスが特定の処理を上書きできるようにテンプレートメソッド設計パターンを用いました。

関連語

lazy initialisation pattern

名詞

(software, design) Synonym of lazy initialisation

日本語の意味
遅延初期化パターン
英語の意味
(software, design) Synonym of lazy initialisation
このボタンはなに?

起動時間を最適化するために、私たちのチームはリソースを最初に必要になったときにだけ作成する遅延初期化パターンを実装しました。

関連語

object pool patterns

名詞
活用形 複数形

plural of object pool pattern

原形: object pool pattern
日本語の意味
『オブジェクトプールパターン』の複数形、つまり複数のオブジェクトプールパターンを指す(プログラミングにおけるリソース管理の設計パターン)。
英語の意味
plural of object pool pattern
このボタンはなに?

経験豊富な開発者は、高スループットなシステムで割り当てのオーバーヘッドを削減するためにオブジェクトプールのパターンを使うことをよく勧めます。

lazy initialisation patterns

名詞
活用形 複数形

plural of lazy initialisation pattern

原形: lazy initialisation pattern
日本語の意味
「lazy initialisation patterns」は「lazy initialisation pattern」の複数形です。つまり、「怠惰な初期化パターン」の複数形として用いられます。
英語の意味
plural of lazy initialisation pattern
このボタンはなに?

コードレビューで、起動時間とメモリ使用量を削減できるいくつかの遅延初期化のパターンについて議論しました。

object pool pattern

名詞

(programming) A creational design pattern that uses a set of initialised objects kept ready to use, rather than allocating and destroying them on demand.

日本語の意味
オブジェクトプールパターンとは、あらかじめ生成しておいたオブジェクトの集合(プール)を保持し、必要なときにそのオブジェクトを再利用することで、生成と破棄のコストを削減するための生成系デザインパターンです。
英語の意味
(programming) A creational design pattern that uses a set of initialised objects kept ready to use, rather than allocating and destroying them on demand.
このボタンはなに?

高負荷のサーバーでパフォーマンスを改善するために、各リクエストで接続オブジェクトを生成・破棄する代わりに再利用するオブジェクトプール設計パターンを導入しました。

関連語

plural

front controller pattern

名詞

(software, design) A structural (and partitioning) design pattern that provides a centralized entry point for handling requests and is an extension to the model-view-controller design pattern.

日本語の意味
フロントコントローラパターン:リクエストの入口を一元管理し、適切な処理へ振り分ける仕組みを提供する構造・分割化デザインパターン。MVC(モデル-ビュー-コントローラ)パターンの拡張として位置付けられる。 / システム全体のルーティングを中央集権的に管理することで、処理の統一性や保守性を向上させる設計手法。
英語の意味
(software, design) A structural (and partitioning) design pattern that provides a centralized entry point for handling requests and is an extension to the model-view-controller design pattern.
このボタンはなに?

保守性を向上させるため、チームはモデル・ビュー・コントローラの拡張であるリクエスト処理を一元化する設計パターンを採用し、ルーティングを簡素化しました。

関連語

chain-of-responsibility patterns

名詞
活用形 複数形

plural of chain-of-responsibility pattern

原形: chain-of-responsibility pattern
日本語の意味
「chain-of-responsibility pattern」の複数形
英語の意味
plural of chain-of-responsibility pattern
このボタンはなに?

上級開発者は、アプリケーションのエラー処理の要件に最も適したものを決めるために、さまざまな責任の連鎖パターンを比較することが多い。

loading!

Loading...

全て読み込みました。

Error

Webで検索する

ログイン / 新規登録

 

アプリをダウンロード!
DiQt

DiQt(ディクト)

無料

★★★★★★★★★★