wrapper$92563$ - tradução para grego
Diclib.com
Dicionário ChatGPT
Digite uma palavra ou frase em qualquer idioma 👆
Idioma:

Tradução e análise de palavras por inteligência artificial ChatGPT

Nesta página você pode obter uma análise detalhada de uma palavra ou frase, produzida usando a melhor tecnologia de inteligência artificial até o momento:

  • como a palavra é usada
  • frequência de uso
  • é usado com mais frequência na fala oral ou escrita
  • opções de tradução de palavras
  • exemplos de uso (várias frases com tradução)
  • etimologia

wrapper$92563$ - tradução para grego

COMPUTER TERM REFERRING TO A JAVA CLASS IN OBJECT-ORIENTED PROGRAMMING
Wrapper class; Primitive wrapper; Primitive wrapper class

wrapper      
n. τυλίσσων, περικάλυμμα
packing materials         
  • Beer [[bottling line]]s
  • express]] carriers.
  • Permanent, tamper evident voiding label with a dual number tab to help keep packaging secure with the additional benefit of being able to track and trace parcels and packages.
  • A pill box made from [[polyethylene]] in 1936.
  • Various types of household packaging for foods.
  • A [[bar code]] on a tin of condensed milk.
  • [[Heroin]] bottle and carton, early 20th century.
  • Packing folding cartons of salt.
  • "Print & Apply" corner wrap UCC ([[GS1-128]]) label application to a pallet load.
  • Bronze wine container from the 9th century BCE.
  • packet]].
  • The [[waste hierarchy]]
TECHNOLOGY, INDUSTRY, PROCESS OR ITEMS OF PRODUCT ENCLOSURE, INCLUDING LABELS AND LABELING
Packaging material; Packaging; Packaging design; Beverage containers; Flexible packaging; Packaging Design; Packager (manufacturing); Package design; Packaging industry; Product packaging; Packing material; Packing materials; Packaging materials; Packaging and labelling; Package (packaging); Packaged; Package (marketing); History of packaging and labeling; Packaging box; Plastic wrapper; Paper wrapper; Cellophane wrapper; Cloth wrapper; Packaging films; Ships in own container
υλικά συσκευασίας

Definição

wrapper
<programming> Code which is combined with another piece of code to determine how that code is executed. The wrapper acts as an interface between its caller and the wrapped code. This may be done for compatibility, e.g. if the wrapped code is in a different programming language or uses different calling conventions, or for security, e.g. to prevent the calling program from executing certain functions. The implication is that the wrapped code can only be accessed via the wrapper. (1998-12-15)

Wikipédia

Primitive wrapper class in Java

In object-oriented programming, a wrapper class is a class that encapsulates types, so that those types can be used to create object instances and methods in another class that needs those types. So a primitive wrapper class is a wrapper class that encapsulates, hides or wraps data types from the eight primitive data types, so that these can be used to create instantiated objects with methods in another class or in other classes. The primitive wrapper classes are found in the Java API.

Primitive wrapper classes are used to create an Object that needs to represent primitive types in Collection classes (i.e., in the Java API), in the java.util package and in the java.lang.reflect reflection package. Collection classes are Java API-defined classes that can store objects in a manner similar to how data structures like arrays store primitive data types like int, double, long or char, etc., but arrays store primitive data types while collections actually store objects.

The primitive wrapper classes and their corresponding primitive types are: