virtual
共 235 篇文章
virtual 相关的电子技术资料,包括技术文档、应用笔记、电路设计、代码示例等,共 235 篇文章,持续更新中。
This program uses virtual base classes
This program uses virtual base classes
vmware virtual disk file format specification 1.0
vmware virtual disk file
format specification 1.0
在linux文件系统下
在linux文件系统下,实现虚函数,简单地说,那些被virtual关键字修饰的成员函数,就是虚函数。虚函数的作用,用专业术语来解释就是实现多态性(Polymorphism),多态性是将接口与实现进行分离;用形象的语言来解释就是实现以共同的方法,但因个体差异而采用不同的策略
包含两的关于Virtual JTAG的应用实例
包含两的关于Virtual JTAG的应用实例,可以为Virtual JTAG操作提供借鉴。
Java 虚拟机 Java Virtual Machine 彻底解构 Java 底层核心运作的原理, 同时能让你理解如何实作 Java 虚拟机, 是不可多得的好书
Java 虚拟机 Java Virtual Machine 彻底解构 Java 底层核心运作的原理, 同时能让你理解如何实作 Java 虚拟机, 是不可多得的好书
Lua is a powerful, fast, lightweight, embeddable scripting language. Lua combines simple procedura
Lua is a powerful, fast, lightweight, embeddable scripting language.
Lua combines simple procedural syntax with powerful data description constructs based on associative arrays and extensible semant
C programs for adding two matrices parallely usinf Parallel Virtual Machine(PVM).It is working and c
C programs for adding two matrices parallely usinf Parallel Virtual Machine(PVM).It is working and can be used as a starting point to familiarize PVM
Virtual Studio 2005.net写的程序
Virtual Studio 2005.net写的程序,包括源码及可执行程序
A Java virtual machine instruction consists of an opcode specifying the operation to be performed, f
A Java virtual machine instruction consists of an opcode specifying the operation to be performed, followed by zero or more operands embodying values to be operated upon. This chapter gives details ab
Linux 虚拟网络接口 实例 In the Linux (or Unix) world, most network interfaces, such as eth0 and ppp0, are a
Linux 虚拟网络接口 实例
In the Linux (or Unix) world, most network interfaces, such as eth0 and ppp0, are associated with a physical device that is in charge of transmitting and receiving data packets. Howev
This manual describes SAMSUNG s S3C2410X 16/32-bit RISC microprocessor. This product is designed to
This manual describes SAMSUNG s S3C2410X 16/32-bit RISC microprocessor. This product is designed to
provide hand-held devices and general applications with cost-effective, low-power, and high-perform
The goal of this exercise is to understand the concept of Carrier-Sensing in IEEE 802.11 standard an
The goal of this exercise is to understand the concept of Carrier-Sensing in IEEE 802.11 standard and compare Physical Carrier Sense and Virtual Carrier Sense mechanisms.
vbox project - sun virtual box for test safety.
vbox project - sun virtual box for test safety.
virtual networking computer
virtual networking computer
第一章:Internetworking 第二章:Internet Protocols 第三章:IP Subnetting and Variable Length Subnet Masks(VLS
第一章:Internetworking
第二章:Internet Protocols
第三章:IP Subnetting and Variable Length Subnet Masks(VLSM)
第四章:Introduction to the Cisco IOS
第五章:IP路由
第六章:Enhanced IGRP(EIGRP) and Open Shortest Path Fir
This guide provides an in-depth look at the construction and underlying theory of a fully functional
This guide provides an in-depth look at the construction and underlying theory of a fully functional virtual machine and an entire suite of related development tools.
USB Code for ARM7 using Virtual Com Port based on LPC23xx
USB Code for ARM7 using Virtual Com Port based on LPC23xx
传统的以太网是一个广播型网络
传统的以太网是一个广播型网络,网络中的所有主机通过HUB 或交换机相连,处在
同一个广播域中。HUB 是物理层设备,没有交换功能,接收的报文会向所有端口转
发;交换机是链路层设备,具备根据报文的目的MAC 地址进行转发的能力,但在
收到广播报文或未知单播报文(报文的目的MAC 地址不在交换机MAC 地址表中)
时,也会向除交换机报文入端口之外的所有端口转发。
上述情况使网络中的主机会收到
3D Game Programming with a Virtual Computer
3D Game Programming
with a Virtual Computer
虚拟代理模式(Virtual Proxy)是一种节省内存的技术
虚拟代理模式(Virtual Proxy)是一种节省内存的技术,它建议创建那些占用大量内存或处理复杂的对象时,把创建这类对象推迟到使用它的时候。在特定的应用中,不同部分的功能由不同的对象组成,应用启动的时候,不会立即使用所有的对象。在这种情况下,虚拟代理模式建议推迟对象的创建直到应用程序需要它为止。对象被应用第一次引用时创建并且同一个实例可以被重用。这种方法优缺点并存。