importとは? わかりやすく解説

import

別表記:インポート

「import」の意味

「import」とは、他の国から商品サービス購入して自国持ち込むことを指す。また、プログラミングにおいては、あるプログラムモジュールから別のプログラムモジュール機能利用するために、その機能取り込むことを意味する具体的には、ある国が自動車食料品他国から輸入する場合や、Pythonであるライブラリ関数使用する際に「import」が用いられる

「import」の発音・読み方

「import」の発音は、/ɪmˈpɔːrt/(イムポート)であり、日本人発音するカタカナ英語では「インポート」となる。ただし、「import」は発音によって意味や品詞が変わる単語であり、動詞場合は /ˈɪm.pɔːrt/(インポート)となる。

「import」の定義を英語で解説

英語での「import」の定義は、""to bring in (merchandise, commodities, workers, etc.) from a foreign country for use, sale, processing, reexport, or services""となる。また、プログラミングにおいては、""to bring (a file, data, etc.) into one software program from another""という定義がある。

「import」の類語

「import」の類語には、""bring in""や""introduce""がある。これらの単語も、他の国から商品サービス自国持ち込むことを意味する

「import」に関連する用語・表現

「import」に関連する用語表現としては、「export」や「trade」が挙げられる。「export」は、自国商品サービス他国販売することを指し、「trade」は、国際間での商品サービス取引意味する

「import」の例文

1. The company imports cars from Germany.(その会社ドイツから車を輸入している。)
2. Japan imports a large amount of oil.(日本大量石油輸入している。)
3. We need to import skilled workers to meet the demand.(需要応えるために、熟練労働者輸入する必要がある。)
4. The government decided to import more food to prevent shortages.(政府は不足を防ぐために、より多く食料輸入することを決定した。)
5. The software allows you to import data from various sources.(そのソフトウェアは、さまざまなソースからデータインポートすることができる。)
6. To use the library, you need to import it first.(そのライブラリ使用するには、まずインポートする必要がある。)
7. The country has a high import tax on luxury goods.(その国は高級品に対して高い輸入税課している。)
8. The import of certain products is restricted by law.(特定の製品輸入法律制限されている。)
9. The import and export balance affects the economy.(輸入と輸出バランス経済影響与える。)
10. The company is planning to expand its import business.(その会社輸入事業拡大する予定である。)

インポート

英語:import

インポートとは、英語の import をカタカナ表記した語であり、「輸入(する)」「導入する」「持ち込む」といった意味で用いられる表現である。対義語エクスポートexport)。

英語の import は、「中へ」という意味のある接頭辞im-」と、「運ぶ」という意味のある語幹port」とで構成される単語である。すなわち「中に運び込む」という根源的意味合いから「輸入する」「導入する」といった意味が生じているわけである。

ITの分野においては「インポート」は主に「データ読み込む取り込む動作意味する語として用いられる。自らのデータ出力し読み込ませることを「エクスポート」という。

Imports and Exports という表現一般的には輸出入」、つまり「貿易」を意味する

日本語における「インポート」は、「インポートする」という形で動詞として扱われる場合が多いが、「インポートブランド」「インポート家具」のように名詞に付く(形容詞的な)形で用いられる場合も多い。こうした形容詞的扱いの「インポート」は、「海外製造された(もともとは現地向けの)商品」という意味合い含んでいる場合が多い。

インポート【import】


インポート

ファイルとフォルダのほかの用語一覧
ファイル形式:  エキスパンドブック  エクスポート  インターレースGIF  インポート  BMP  CSV  CAB形式

Import クラス


Import クラス

名前空間: Microsoft.JScript
アセンブリ: Microsoft.JScript (microsoft.jscript.dll 内)
構文構文

Public NotInheritable Class
 Import
    Inherits AST
public final class Import extends AST
public final class Import extends
 AST
継承階層継承階層
System.Object
   Microsoft.JScript.AST
    Microsoft.JScript.Import
スレッド セーフスレッド セーフ
この型の public static (Visual Basic では Shared) メンバはすべて、スレッド セーフです。インスタンス メンバ場合は、スレッド セーフであるとは限りません。
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照

Import クラス

XML 名前空間ドキュメント位置関連付けます。このクラス継承できません。

名前空間: System.Web.Services.Description
アセンブリ: System.Web.Services (system.web.services.dll 内)
構文構文

Public NotInheritable Class
 Import
    Inherits DocumentableItem
public sealed class Import : DocumentableItem
public ref class Import sealed : public
 DocumentableItem
public final class Import extends DocumentableItem
public final class Import extends
 DocumentableItem
解説解説
使用例使用例

Import クラス新しインスタンス作成するユーザー定義のメソッド次の例に示します

Imports System
Imports System.Web.Services.Description
Imports System.Collections
Imports System.Xml

Class MySample
   Public Shared Sub Main()
      Console.WriteLine("Import Sample")
      
      Dim myServiceDescription As ServiceDescription
 = _
         ServiceDescription.Read("StockQuote_vb.wsdl")
      myServiceDescription.Imports.Add( _
         CreateImport("http://localhost/stockquote/schemas",
 _
         "http://localhost/stockquote/stockquote_vb.xsd"))
      ' Save the ServiceDescripition to an external file.
      myServiceDescription.Write("StockQuote_vb.wsdl")
      Console.WriteLine("Successfully added Import to WSDL document
 " _
         & "'StockQuote_vb.wsdl'")
      ' Print the import collection to the console.
      PrintImportCollection("StockQuote_vb.wsdl")
        myServiceDescription = _
           ServiceDescription.Read("StockQuoteService_vb.wsdl")
      myServiceDescription.Imports.Insert(0, _
         CreateImport("http://localhost/stockquote/definitions",
 _
         "http://localhost/stockquote/stockquote_vb.wsdl"))
      ' Save the ServiceDescripition to an external file.
      myServiceDescription.Write("StockQuoteService_vb.wsdl")
      Console.WriteLine("")
      Console.WriteLine("Successfully added Import to "
 & _
         "WSDL document 'StockQuoteService_vb.wsdl'")
      'Print the import collection to the console.
      PrintImportCollection("StockQuoteService_vb.wsdl")
   End Sub 'Main

   ' Creates an Import object with namespace and location.
   Public Shared Function
 CreateImport(targetNamespace As String, _
      targetlocation As String) As
 Import
      Dim myImport As New
 Import()
      myImport.Location = targetlocation
      myImport.Namespace = targetNamespace
      Return myImport
   End Function 'CreateImport

   Public Shared Sub PrintImportCollection(fileName_wsdl
 As String)

      ' Read import collection properties from generated WSDL file.
      Dim myServiceDescription1 As _
         ServiceDescription = ServiceDescription.Read(fileName_wsdl)
      Dim myImportCollection As ImportCollection
 = myServiceDescription1.Imports
      Console.WriteLine("Enumerating Import Collection for
 file '" & _
         fileName_wsdl & "'...")

      ' Print Import properties to the console.
      Dim i As Integer
      For i = 0 To myImportCollection.Count
 - 1
         Console.WriteLine("Namespace : " & myImportCollection(i).Namespace)
         Console.WriteLine("Location  : " & myImportCollection(i).Location)
         Console.WriteLine("ServiceDescription  : "
 & _
            myImportCollection(i).ServiceDescription.Name)
      Next i
   End Sub 'PrintImportCollection
End Class 'MySample
using System;
using System.Web.Services.Description;
using System.Collections;
using System.Xml;

class MySample
{
   public static void Main()
   {
      Console.WriteLine("Import Sample");
      ServiceDescription myServiceDescription = 
         ServiceDescription.Read("StockQuote_cs.wsdl");
      myServiceDescription.Imports.Add(
         CreateImport("http://localhost/stockquote/schemas"
,
         "http://localhost/stockquote/stockquote_cs.xsd"));
      // Save the ServiceDescripition to an external file.
      myServiceDescription.Write("StockQuote_cs.wsdl");
      Console.WriteLine(
         "Successfully added import to WSDL document 'StockQuote_cs.wsdl'");

      // Print the import collection to the console.
      PrintImportCollection("StockQuote_cs.wsdl");
      myServiceDescription = 
         ServiceDescription.Read("StockQuoteService_cs.wsdl");
      myServiceDescription.Imports.Insert(
         0,CreateImport("http://localhost/stockquote/definitions"
,
         "http://localhost/stockquote/stockquote_cs.wsdl"));
      // Save the ServiceDescripition to an external file.
      myServiceDescription.Write("StockQuoteService_cs.wsdl");
      Console.WriteLine("");
      Console.WriteLine("Successfully added import to WSDL " +
         "document 'StockQuoteService_cs.wsdl'");

      //Print the import collection to the console.
      PrintImportCollection("StockQuoteService_cs.wsdl");
   }
   // Creates an Import object with namespace and location.
   public static Import CreateImport(string
 targetNamespace, 
      string targetlocation)
   {
      Import myImport = new Import();
      myImport.Location = targetlocation;
      myImport.Namespace = targetNamespace;
      return myImport;
   }

   public static void PrintImportCollection(string
 fileName_wsdl)
   {
      // Read import collection properties from generated WSDL file.
      ServiceDescription myServiceDescription1 = 
         ServiceDescription.Read(fileName_wsdl);
      ImportCollection myImportCollection = myServiceDescription1.Imports;
      Console.WriteLine("Enumerating Import Collection for
 file '" + 
         fileName_wsdl +"'...");

      // Print Import properties to console.
      for(int i =0; i < myImportCollection.Count;
 ++i)
      {
         Console.WriteLine("Namespace : " + myImportCollection[i].Namespace);
         Console.WriteLine("Location  : " + myImportCollection[i].Location);
         Console.WriteLine("ServiceDescription  : " + 
            myImportCollection[i].ServiceDescription.Name);
      }
   }
}
#using <System.dll>
#using <System.Xml.dll>
#using <System.Web.Services.dll>

using namespace System;
using namespace System::Web::Services::Description;
using namespace System::Collections;
using namespace System::Xml;

// Creates an Import object with namespace and location.
Import^ CreateImport( String^ targetNamespace, String^ targetlocation )
{
   Import^ myImport = gcnew Import;
   myImport->Location = targetlocation;
   myImport->Namespace = targetNamespace;
   return myImport;
}

void PrintImportCollection( String^ fileName_wsdl )
{
   // Read import collection properties from generated WSDL file.
   ServiceDescription^ myServiceDescription1 = ServiceDescription::Read( fileName_wsdl
 );
   ImportCollection^ myImportCollection = myServiceDescription1->Imports;
   Console::WriteLine( "Enumerating Import Collection for
 file ' {0}'...", fileName_wsdl );
   
   // Print Import properties to console.
   for ( int i = 0; i < myImportCollection->Count;
 ++i )
   {
      Console::WriteLine( "Namespace : {0}", myImportCollection[ i ]->Namespace
 );
      Console::WriteLine( "Location  : {0}", myImportCollection[ i ]->Location
 );
      Console::WriteLine( "ServiceDescription  : {0}", myImportCollection[
 i ]->ServiceDescription->Name );
   }
}

int main()
{
   Console::WriteLine( "Import Sample" );
   
   ServiceDescription^ myServiceDescription = ServiceDescription::Read( "StockQuote_cpp.wsdl"
 );
   myServiceDescription->Imports->Add( CreateImport( "http://localhost/stockquote/schemas",
 "http://localhost/stockquote/stockquote_cpp.xsd" ) );

   // Save the ServiceDescripition to an external file.
   myServiceDescription->Write( "StockQuote_cpp.wsdl" );
   Console::WriteLine( "document 'StockQuote_cpp.wsdl'" );
   
   // Print the import collection to the console.
   PrintImportCollection( "StockQuote_cpp.wsdl" );
   
   myServiceDescription = ServiceDescription::Read( "StockQuoteService_cpp.wsdl"
 );
   myServiceDescription->Imports->Insert( 0, CreateImport( "http://localhost/stockquote/definitions",
 "http://localhost/stockquote/stockquote_cpp.wsdl" ) );

   // Save the ServiceDescripition to an external file.
   myServiceDescription->Write( "StockQuoteService_cs::wsdl" );
   Console::WriteLine( "" );
   Console::WriteLine( "document 'StockQuoteService_cpp.wsdl'" );
   
   //Print the import collection to the console.
   PrintImportCollection( "StockQuoteService_cpp.wsdl" );
}
継承階層継承階層
System.Object
   System.Web.Services.Description.DocumentableItem
    System.Web.Services.Description.Import
スレッド セーフスレッド セーフ
この型の public static (Visual Basic では Shared) メンバはすべて、スレッド セーフです。インスタンス メンバ場合は、スレッド セーフであるとは限りません。
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
Import メンバ
System.Web.Services.Description 名前空間

Import コンストラクタ


Import プロパティ


パブリック プロパティパブリック プロパティ

  名前 説明
パブリック プロパティ Condition Import 要素Condition 属性の値を取得します
パブリック プロパティ EvaluatedProjectPath Import 要素Name 属性指定されファイル絶対パス取得します
パブリック プロパティ IsImported Import 要素プロジェクトインポートされたかどうかを示す値を取得します
パブリック プロパティ ProjectPath Import 要素Project 属性の値を返します
参照参照

関連項目

Import クラス
Microsoft.Build.BuildEngine 名前空間

Import プロパティ


パブリック プロパティパブリック プロパティ

  名前 説明
パブリック プロパティ Documentation  DocumentableItem のインスタンステキスト ドキュメント取得または設定します。 ( DocumentableItem から継承されます。)
パブリック プロパティ DocumentationElement  DocumentableItemドキュメント要素取得または設定します。 ( DocumentableItem から継承されます。)
パブリック プロパティ ExtensibleAttributes  Web Services Interoperability (WS-I) Basic Profile 1.1準拠する WSDL属性拡張機能を表す XmlAttribute 型の配列取得または設定します。 ( DocumentableItem から継承されます。)
パブリック プロパティ Extensions オーバーライドされます。 この Import クラス関連付けられている ServiceDescriptionFormatExtensionCollection を取得します
パブリック プロパティ Location import 要素XML location 属性の値を取得または設定します
パブリック プロパティ Namespace import 要素XML namespace 属性の値を取得または設定します
パブリック プロパティ Namespaces  ServiceDescription オブジェクト生成されるときに名前空間プレフィックス名前空間保持するために使用する名前空間プレフィックス名前空間のディクショナリを取得または設定します。 ( DocumentableItem から継承されます。)
パブリック プロパティ ServiceDescription Importメンバとして含まれている ServiceDescription への参照取得します
参照参照

関連項目

Import クラス
System.Web.Services.Description 名前空間

Import メソッド


Import メソッド


Import メソッド


Import メンバ

MSBuild プロジェクト内の 1 つの Import 要素表します

Import データ型公開されるメンバを以下の表に示します


パブリック プロパティパブリック プロパティ
  名前 説明
パブリック プロパティ Condition Import 要素Condition 属性の値を取得します
パブリック プロパティ EvaluatedProjectPath Import 要素Name 属性指定されファイル絶対パス取得します
パブリック プロパティ IsImported Import 要素プロジェクトインポートされたかどうかを示す値を取得します
パブリック プロパティ ProjectPath Import 要素Project 属性の値を返します
パブリック メソッドパブリック メソッド
プロテクト メソッドプロテクト メソッド
参照参照

関連項目

Import クラス
Microsoft.Build.BuildEngine 名前空間

Import メンバ


Import メンバ

XML 名前空間ドキュメント位置関連付けます。このクラス継承できません。

Import データ型公開されるメンバを以下の表に示します


パブリック コンストラクタパブリック コンストラクタ
  名前 説明
パブリック メソッド Import  
パブリック プロパティパブリック プロパティ
  名前 説明
パブリック プロパティ Documentation  DocumentableItem のインスタンステキスト ドキュメント取得または設定します。(DocumentableItem から継承されます。)
パブリック プロパティ DocumentationElement  DocumentableItemドキュメント要素取得または設定します。(DocumentableItem から継承されます。)
パブリック プロパティ ExtensibleAttributes  Web Services Interoperability (WS-I) Basic Profile 1.1準拠する WSDL属性拡張機能を表す XmlAttribute 型の配列取得または設定します。(DocumentableItem から継承されます。)
パブリック プロパティ Extensions オーバーライドされます。 この Import クラス関連付けられている ServiceDescriptionFormatExtensionCollection を取得します
パブリック プロパティ Location import 要素XML location 属性の値を取得または設定します
パブリック プロパティ Namespace import 要素XML namespace 属性の値を取得または設定します
パブリック プロパティ Namespaces  ServiceDescription オブジェクト生成されるときに名前空間プレフィックス名前空間保持するために使用する名前空間プレフィックス名前空間のディクショナリを取得または設定します。(DocumentableItem から継承されます。)
パブリック プロパティ ServiceDescription Importメンバとして含まれている ServiceDescription への参照取得します
パブリック メソッドパブリック メソッド
プロテクト メソッドプロテクト メソッド
参照参照

関連項目

Import クラス
System.Web.Services.Description 名前空間

輸入

(import から転送)

出典: フリー百科事典『ウィキペディア(Wikipedia)』 (2023/12/09 01:14 UTC 版)

輸入(ゆにゅう、英語: import)とは、外国の産物・技術などを自国に取り入れること[1]。特に、外国の商品を自国へ買い入れること[1]。対義語は輸出


注釈

  1. ^ 2019年12月現在、新車で販売されている車種の例・日産・マーチトヨタ・タウンエース(商用バン/トラック)/ライトエース(商用バン/トラック)三菱・ミラージュスズキ・バレーノマツダ教習車(日本市場未投入のMAZDA2 SEDANの同型車種)などがこれに該当する。
  2. ^ 北米地域で生産されたトヨタ・セプター(ただしセダンは除く)やトヨタ・アバロン(日本市場向けにおける後のプロナード)、三菱・エクリプスホンダ・ラグレイト、オーストラリアで生産された三菱・マグナワゴン(日本市場向けにおける後のディアマンテワゴン)、英国で生産されたトヨタ・アベンシス、オランダで生産された三菱・カリスマ、ハンガリーで生産されたスズキ・スプラッシュなどがこれに該当する。

出典

  1. ^ a b デジタル大辞泉【輸入(ゆにゅう)】
  2. ^ 改善計画認定 公取委、並行輸入妨害容疑”. 毎日新聞 (2022年3月25日). 2022年3月25日閲覧。
  3. ^ 5 並行輸入品の修理受託の拒否”. www.jftc.go.jp. 公正取引委員会. 2021年5月29日閲覧。
  4. ^ 輸入とは”. コトバンク. 2023年11月8日閲覧。


「輸入」の続きの解説一覧


英和和英テキスト翻訳>> Weblio翻訳
英語⇒日本語日本語⇒英語
  

「import」に関係したコラム

  • CFDで自動売買するには

    CFDで自動売買するには、CFD業者の提供する取引ツールに自動売買の機能が付いていることが条件になります。2012年7月現在、自動売買の機能が付いている取引ツールを提供しているCFD業者はGCIフィナ...

  • FXのチャート分析ソフトMT4のEAの使い方

    EA(Expert Advisor)とは、FX(外国為替証拠金取引)のチャート分析ソフトMT4(Meta Trader 4)上で自動売買するためのプログラムの名称です。EAは、多くのWebサイトで公開...

辞書ショートカット

すべての辞書の索引

「import」の関連用語

importのお隣キーワード
検索ランキング

   

英語⇒日本語
日本語⇒英語
   



importのページの著作権
Weblio 辞書 情報提供元は 参加元一覧 にて確認できます。

   
実用日本語表現辞典実用日本語表現辞典
Copyright © 2024実用日本語表現辞典 All Rights Reserved.
デジタル大辞泉デジタル大辞泉
(C)Shogakukan Inc.
株式会社 小学館
PHPプロ!PHPプロ!
©COPYRIGHT ASIAL CORPORATION ALL RIGHTS RESERVED.
IT用語辞典バイナリIT用語辞典バイナリ
Copyright © 2005-2024 Weblio 辞書 IT用語辞典バイナリさくいん。 この記事は、IT用語辞典バイナリインポートの記事を利用しております。
日本マイクロソフト株式会社日本マイクロソフト株式会社
© 2024 Microsoft.All rights reserved.
ウィキペディアウィキペディア
All text is available under the terms of the GNU Free Documentation License.
この記事は、ウィキペディアの輸入 (改訂履歴)の記事を複製、再配布したものにあたり、GNU Free Documentation Licenseというライセンスの下で提供されています。 Weblio辞書に掲載されているウィキペディアの記事も、全てGNU Free Documentation Licenseの元に提供されております。

©2024 GRAS Group, Inc.RSS