1016万例文収録!

「subclassing」に関連した英語例文の一覧と使い方 - Weblio英語例文検索


小窓モード

プレミアム

ログイン
設定

設定

Weblio 辞書 > 英和辞典・和英辞典 > subclassingに関連した英語例文

セーフサーチ:オン

不適切な検索結果を除外する

不適切な検索結果を除外しない

セーフサーチについて

subclassingを含む例文一覧と使い方

該当件数 : 21



例文

3.14.6 Subclassing Unpicklers 例文帳に追加

3.14.6 Unpickler をサブクラス化する - Python

3.26.2 Subclassing Repr Objects 例文帳に追加

3.26.2 Reprオブジェクトをサブクラス化する - Python

internalsvia subclassing: 例文帳に追加

の内部をサブクラスで拡張しない限り、意味はないでしょう: - Python

The difference can become apparent when subclassing these types.例文帳に追加

こうした違いは、これらの型をサブクラス化する際に顕在化してきます。 - Python

例文

Normally you never make an instance of the PEAR class directly, you use it by subclassing it. 例文帳に追加

通常、PEAR クラスのインスタンスを直接生成することはなく、サブクラス化して使用します。 - PEAR


例文

The class which implements the sequence behavior provided by the module is available for subclassing as well:例文帳に追加

このモジュールのシーケンスの振舞いを実装しているクラスのサブクラスを作ることもできます。 - Python

The Page level subclassing is simple, but if you have a complex StateMachine you will end up having multiple subclasses. 例文帳に追加

ページレベルでサブクラスを作成するほうがシンプルですが、複雑な StateMachine を使用するなら複数のサブクラスを作成することになります。 - PEAR

The most useful way to define a CookiePolicy class is by subclassing from DefaultCookiePolicy and overriding some or all of the methods above.例文帳に追加

もっとも有用な方法は、DefaultCookiePolicy をサブクラス化したCookiePolicy クラスを定義して、いくつか (あるいはすべて) のメソッドをオーバーライドすることでしょう。 - Python

New commands may directly inherit from Command, while replacements oftenderive from Command indirectly, directly subclassing the command they are replacing.例文帳に追加

新しいコマンドはCommandを直接継承し、置換するコマンドでは置換対象のコマンドのサブクラスにすることでCommandを間接的に継承します。 - Python

例文

Two exception classes that are not related via subclassing are never equivalent, even if they have the same name. The built-in exceptions listed below can be generated by the interpreter or built-in functions.例文帳に追加

以下に列挙した組み込み例外はインタプリタや組み込み関数によって生成されます。 - Python

例文

As an example of subclassing, the random module provides the WichmannHill class which implements an alternative generator in pure Python.例文帳に追加

サブクラス化の例として、random モジュールは WichmannHill クラスを提供します。 このクラスは Python だけで書かれた代替生成器を実装しています。 - Python

Several builtin types such as list and dict do not directly support weak references but can add support through subclassing:例文帳に追加

list やdict など、いくつかの組み込み型は弱参照を直接サポートしませんが、以下のようにサブクラス化を行えばサポートを追加できます: - Python

The following attributes of a TestLoader can be configured either by subclassing or assignment on an instance:例文帳に追加

以下の属性は、サブクラス化またはインスタンスの属性値を変更してTestLoaderをカスタマイズする場合に使用します。 - Python

Two implementations of formatter objects are provided by this module.Most applications may use one of these classes without modification or subclassing.例文帳に追加

このモジュールでは、formatter オブジェクトに関して二つの実装を提供しています。 ほとんどのアプリケーションではこれらのクラスを変更したりサブクラス化することなく使うことができます。 - Python

If you are writing code that does not need to work with versions of Python earlier than Python 2.2, please consider subclassing directly from the built-in dict type.例文帳に追加

Python 2.2より前のバージョンのPythonで動作する必要のないコードを書いているのならば、組み込みdict型から直接サブクラス化することを検討してください。 - Python

If you are writing code that does not need to work with versions of Python earlier than Python 2.2, please consider subclassing directly from the built-in list type.例文帳に追加

Python 2.2より前のバージョンのPythonで動作する必要のないコードを書いているのならば、組み込みlist型から直接サブクラス化することを検討してください。 - Python

Subclassing requirements:Subclasses of UserList are expect to offer a constructor which can be called with either no arguments or one argument.例文帳に追加

サブクラス化の要件: UserListのサブクラスは引数なしか、あるいは一つの引数のどちらかとともに呼び出せるコンストラクタを提供することが期待されます。 - Python

If you are writing code that does not need to work with versions of Python earlier than Python 2.2, please consider subclassing directly from the built-in str type instead of using UserString (there is no built-in equivalent to MutableString).例文帳に追加

Python 2.2より前のバージョンのPythonで動作する必要のないコードを書いているのならば、UserStringを使う代わりに組み込みstr型から直接サブクラス化することを検討してください(組み込みのMutableStringと等価なものはありません)。 - Python

The defaults of this class are designed to make it useful for parsing MIME multipart messages, but by subclassing it and overriding methods it can be easily adapted for more general use.例文帳に追加

このクラスの標準設定は MIME マルチパートメッセージを解釈する上で便利となるように設計されていますが、サブクラス化を行って幾つかのメソッドを上書きすることで、簡単に汎用目的に対応させることができます。 - Python

Try to maximize code reuse.On occasion, tests will vary by something as small as what typeof input is used.Minimize code duplication by subclassing a basic test class with a class that specifies the input:例文帳に追加

コードの再利用を最大限に行うようにしてください。 時として、テストの多様性はどんな型の入力を受け取るかの違いまで小さくなります。 - Python

例文

While these are technically built-in exceptions, they are documented here, because conceptually they belong to the warnings mechanism.User code can define additional warning categories by subclassing one of the standard warning categories.例文帳に追加

これらは技術的には組み込み例外ですが、概念的には警告メカニズムに属しているのでここで記述されています。 標準の警告カテゴリをユーザの作成したコード上でサブクラス化することで、さらに別の警告カテゴリを定義することができます。 - Python

索引トップ用語の索引



  
この対訳コーパスは独立行政法人情報通信研究機構の研究成果であり、Creative Commons Attribution-Share Alike 3.0 Unportedでライセンスされています。
  
Copyright © 2001 - 2008 by the PEAR Documentation Group.
This material may be distributed only subject to the terms and conditions set forth in the Open Publication License, v1.0 or later (the latest version is presently available at http://www.opencontent.org/openpub/ ).
  
Copyright 2001-2004 Python Software Foundation.All rights reserved.
Copyright 2000 BeOpen.com.All rights reserved.
Copyright 1995-2000 Corporation for National Research Initiatives.All rights reserved.
Copyright 1991-1995 Stichting Mathematisch Centrum.All rights reserved.
こんにちは ゲスト さん

ログイン

Weblio会員(無料)になると

会員登録のメリット検索履歴を保存できる!

会員登録のメリット語彙力診断の実施回数増加!

無料会員に登録する
英→日 日→英
こんにちは ゲスト さん

ログイン

Weblio会員(無料)になると

会員登録のメリット検索履歴を保存できる!

会員登録のメリット語彙力診断の実施回数増加!

無料会員に登録する

©2024 GRAS Group, Inc.RSS