windows - based accelerater - traducción al árabe
Diclib.com
Diccionario ChatGPT
Ingrese una palabra o frase en cualquier idioma 👆
Idioma:

Traducción y análisis de palabras por inteligencia artificial ChatGPT

En esta página puede obtener un análisis detallado de una palabra o frase, producido utilizando la mejor tecnología de inteligencia artificial hasta la fecha:

  • cómo se usa la palabra
  • frecuencia de uso
  • se utiliza con más frecuencia en el habla oral o escrita
  • opciones de traducción
  • ejemplos de uso (varias frases con traducción)
  • etimología

windows - based accelerater - traducción al árabe

PROGRAMMING LANGUAGE
Object-based; Object-based (programming); Object-based programming; Object-Based Languages; Object-based languages; Object based

windows - based accelerater      
مُعجل المعتمد على النوافذ .
مُعجل المعتمد على النوافذ      

windows - based accelerater

windows Nt         
  • Original Windows NT wordmark
PC OPERATING SYSTEM BY MICROSOFT
NT server; Microsoft Windows NT; MSW NT; WindowsNT; MS Windows NT; WIN NT; Windows nt; Windows NT Server; Windows New Technology; WinNT; Windows NT 5.2; Windows NT 6.0; Winnt.exe; Winnt32.exe; Nt-based; Winnt; Windows NT Workstation; Windows Nt; Windows NT family; Windows nt 6.0; Windows nt 6; NT-based; Windows 6; Windows 5; WinNT6.0; Windows 5.2; OS/2 NT; Windows NT Driver Model; Windows NT 6.x; Windows 5.x; NT6; Windows NT 6.1; Windows NT 6.2; Windows NT 7.0; NT family system; NT-based versions of Windows; Windows NT 6.X; Windows NT 6; NT 6.0; NT 6.2; Microsoft Windows NT Server; Windows NT 6.3; Windows 6.x; Windows NT 10; Advanced Windows; Windows NT series; WINNT; NT OS/2
النوافذ الشبكية .

Definición

Windows
<operating system> See Microsoft Windows, Windows NT. (1997-11-23)

Wikipedia

Object-based language

The term object-based language may be used in a technical sense to describe any programming language that uses the idea of encapsulating state and operations inside objects. Object-based languages need not support inheritance or subtyping, but those that do are also termed object-oriented. Object-based languages that do not support inheritance or subtyping are usually not considered to be true object-oriented languages.

Examples of object-oriented languages, in rough chronological order, include Simula, Smalltalk, C++ (which object model is based on Simula's), Objective-C (which object model is based on Smalltalk's), Eiffel, Xojo (formerly REALbasic), Python, Ruby, Java, Visual Basic .NET, C#, and Fortran 2003. Examples of a language that is object-based, but not object-oriented are early versions of Ada, Visual Basic (VB), JavaScript, and Fortran 90. These languages all support the definition of an object as a data structure, but lack polymorphism and inheritance.

In practice, the term object-based is usually applied to those object-based languages that are not also object-oriented, although all object-oriented languages are also object-based, by definition. Instead, the terms object-based and object-oriented are normally used as mutually exclusive alternatives, rather than as categories that overlap.

Sometimes, the term object-based is applied to prototype-based programming languages, true object-oriented languages that lack classes, but in which objects instead inherit their code and data directly from other template objects. An example of a commonly used prototype-based scripting language is JavaScript.

Both object-based and object-oriented languages (whether class-based or prototype-based) may be statically type-checked. Statically checking prototype-based languages can be difficult, because these languages often allow objects to be dynamically extended with new behavior, and even to have their parent object (from which they inherit) changed, at runtime.