구현 클래스 oor Engels

구현 클래스

Vertalings in die woordeboek Koreaans - Engels

implementation class

en
In a static structure diagram, a class that defines the physical data structures and procedures of an object as implemented in a traditional programming language, such as C++. An object may have only one implementation class.
MicrosoftLanguagePortal

Geskatte vertalings

Vertoon algoritmies gegenereerde vertalings

voorbeelde

wedstryd
woorde
Advanced filtering
클래스가 Swift에서 구현된 경우 클래스 이름 앞에 앱/프레임워크 모듈의 이름을 추가해야 합니다(예: appName.className).
Note: If your class is implemented in Swift, you need to prefix the class name with the name of its app/framework module (for example, appName.className).support.google support.google
사용 예제: list<int> N; list<double> S; for (int i = 0; i < 10; i++) N.push_back(i); S << list_comprehension(3.1415 * x, x, N, x*x > 3) 다음 구현클래스 및 연산자 오버로딩을 사용한 head/tail 슬라이싱과 (함수를 사용한) 리스트 필터링을 위한 | 연산자를 제공한다.
Usage example: list<int> N; list<double> S; for (int i = 0; i < 10; i++) N.push_back(i); S << list_comprehension(3.1415 * x, x, N, x*x > 3) This implementation provides head/tail slicing using classes and operator overloading, and the | operator for filtering lists (using functions).WikiMatrix WikiMatrix
이러한 종류의 모델은 일치하는 데이터베이스 스토어 프로시저의 집합을 직접 참조하는 데이터 접근 방식의 클래스를 만듦으로써 구현할 수 있다.
This kind of model could be implemented by creating a class of data access methods that directly reference a corresponding set of database stored procedures.WikiMatrix WikiMatrix
이 포인터들은 실행 기간 도중에 정확한 함수를 가리키게 되는데, 왜냐하면 컴파일 타임에는 베이스 함수가 호출될 것인지 또는 베이스 클래스를 상속한 클래스에 의해서 구현될 지 알려져 있지 않기 때문이다.
These pointers are used at runtime to invoke the appropriate function implementations, because at compile time it may not yet be known if the base function is to be called or a derived one implemented by a class that inherits from the base class.WikiMatrix WikiMatrix
즉, JAXB는 메모리의 데이터를 XML 형식으로 변환하여 저장할 수 있고, 이 과정을 위해 프로그램의 각 클래스에서 XML을 읽고 저장하는 일을 구현해야 한다.
In other words, JAXB allows storing and retrieving data in memory in any XML format, without the need to implement a specific set of XML loading and saving routines for the program's class structure.WikiMatrix WikiMatrix
단일 화면을 Activity 서브클래스구현할 때 개별 콘텐츠 패널을 Fragment 서브클래스구현하는 것을 고려해 보세요.
While a single screen is implemented as an Activity subclass, consider implementing individual content panels as Fragment subclasses.ParaCrawl Corpus ParaCrawl Corpus
제공자 클래스 이름( android:name ) ContentProvider 를 구현하는 클래스입니다.
Provider class name ( android:name ) The class that implements ContentProvider .ParaCrawl Corpus ParaCrawl Corpus
클라이언트에게 인터페이스 노출 Service 를 구현하고 onBind() 를 재정의하여 Stub 클래스구현을 반환합니다.
Expose the interface to clients Implement a Service and override onBind() to return your implementation of the Stub class.ParaCrawl Corpus ParaCrawl Corpus
(이전 섹션에서 설명한 것처럼) 서비스의 인터페이스를 노출하려면 Service 를 확장하고 onBind() 를 구현하여 생성된 Stub 을 구현하는 클래스의 인스턴스를 반환합니다.
To expose the interface for your service, extend Service and implement onBind() to return an instance of your class that implements the generated Stub (as discussed in the previous section).ParaCrawl Corpus ParaCrawl Corpus
메뉴 항목을 처리하지 않는 경우, 해당 메뉴 항목을 슈퍼클래스 구현에 전달해야 합니다.
If you don't handle the menu item, you should pass the menu item to the superclass implementation.ParaCrawl Corpus ParaCrawl Corpus
이 클래스는 ContentProvider 클래스 구현 섹션에 자세히 설명되어 있습니다.
This class is described in more detail in the section Implementing the ContentProvider class .ParaCrawl Corpus ParaCrawl Corpus
UDT 형이면, 이 UDT SQLData 를 구현하는 클래스의 Class 객체를 포함하는 형태 맵내에 엔트리가 존재합니다.
If it is, there will be an entry in a type map containing the Class object for the class that implements SQLData for this UDT.ParaCrawl Corpus ParaCrawl Corpus
이런 것을 구현클래스를 추상 클래스라고 한다.
You cannot create an instance of the abstract class.ParaCrawl Corpus ParaCrawl Corpus
이 클래스에 관한 자세한 정보는 ContentProvider 클래스 구현 섹션을 참조하세요.
For more information about this class, see the section Implementing the ContentProvider class .ParaCrawl Corpus ParaCrawl Corpus
블루투스 저전력을 광고하여 다른 기기가 여러분의 앱을 발견할 수 있게 하려면 startAdvertising() 을 호출하고 AdvertiseCallback 클래스 구현에 전달합니다.
To begin Bluetooth LE advertising so that other devices can discover your app, call startAdvertising() and pass in an implementation of the AdvertiseCallback class.ParaCrawl Corpus ParaCrawl Corpus
ColorModel 는 상속가 가능해서, 서브 클래스는 이 메서드의 구현을 상속합니다. 서브 클래스가 그 구현을 오버라이드(override) 하지 않는 경우, 지원되어 있지 않은 transferType를 사용하고 있으면, 예외가 발생 됩니다.
Since ColorModel can be subclassed, subclasses inherit the implementation of this method and if they don't override it then they throw an exception if they use an unsupported transferType. Overrides: coerceData in class ColorModelParaCrawl Corpus ParaCrawl Corpus
기본 사항 바인드된 서비스란 일종의 Service 클래스 구현으로, 이를 통해 다른 애플리케이션이 이 서비스에 바인드하여 상호작용할 수 있습니다.
A bound service is an implementation of the Service class that allows other applications to bind to it and interact with it.ParaCrawl Corpus ParaCrawl Corpus
Paint 인터페이스를 구현하는 클래스는 draw 메서드 및 fill 메서드에 의해 사용되는 컬러 패턴을 정의하기 위해서 Graphics2D 컨텍스트에 추가됩니다.
A class implementing the Paint interface is added to the Graphics2D context in order to define the color pattern used by the draw and fill methods.ParaCrawl Corpus ParaCrawl Corpus
{"image/jpeg"} 제공자가 필터 문자열에서 요청한 MIME 유형 중 제공하는 것이 없는 경우, getStreamTypes() 가 null 을 반환하는 것이 정상입니다. 계약 클래스 구현
{"image/jpeg"} If your provider doesn't offer any of the MIME types requested in the filter string, getStreamTypes() should return null .ParaCrawl Corpus ParaCrawl Corpus
콘텐츠 제공자는 ContentProvider 의 서브클래스구현되며, 다른 앱이 트랜잭션을 수행할 수 있도록 활성화하는 표준 API 집합을 구현해야 합니다.
A content provider is implemented as a subclass of ContentProvider and must implement a standard set of APIs that enable other apps to perform transactions.ParaCrawl Corpus ParaCrawl Corpus
RESTful Root 리소스 클래스구현합니다.
Implement RESTful Root resource class.ParaCrawl Corpus ParaCrawl Corpus
이것은 일반적으로 CursorLoader 이지만, 자신만의 Loader 서브클래스구현할 수 있습니다.
Typically this will be a CursorLoader , but you can implement your own Loader subclass.ParaCrawl Corpus ParaCrawl Corpus
서비스는 Service 의 서브클래스구현되며 이에 대한 더 자세한 내용은 서비스 개발자 가이드에서 확인할 수 있습니다.
A service is implemented as a subclass of Service . For more information about the Service class, see the Services developer guide.ParaCrawl Corpus ParaCrawl Corpus
Swing 에는 이 클래스구현에 의해 제공되는 기능을 사용하는 컷, 카피, 페이스트의 키보드 바인딩을 자동적으로 지원하는 기능이 준비되어 있습니다.
Swing provides functionality that automatically supports cut, copy, and paste keyboard bindings that use the functionality provided by an implementation of this class.ParaCrawl Corpus ParaCrawl Corpus
BigDecimal 클래스구현되고 있는 것 같은 수치 연산자의 규칙에 대해 설명하는 컨텍스트 설정을 캡슐화하는 불변의 객체입니다.
MathContext Immutable objects which encapsulate the context settings which describe certain rules for numerical operators, such as those implemented by the BigDecimal class.ParaCrawl Corpus ParaCrawl Corpus
74 sinne gevind in 28 ms. Hulle kom uit baie bronne en word nie nagegaan nie.