Redian新闻
>
是不是一般不喜欢两级之间的输出输入都是high impedance?
avatar
是不是一般不喜欢两级之间的输出输入都是high impedance?# EE - 电子工程
e*0
1
新添了个Dell Laptop with Vista Home Basic, but it does not support IIS (
Internet Information Services). 本想沿着微软大道一直走下去,用 ASP,VBSript
建个网站,可现在要么得upgrade Vista to Premium or Ultimate (总觉得初学阶段不
值得花那吗多银子), 要么 downgrade to XP (I have XP CD but it may not be
that easy. Some articles say Dell may have changed BIOS to prevent the
system from being changed/downgraded and some people got stuck there).
还有一个选择就是install XAMPP on my Vista Home Basic,然后用 PHP and Mysql.
不知 if XAMPP has any issues on Vista Home Basi
avatar
b*y
2
1. 存指针的container和存object的container, 哪个更efficient.
2. static变量存放在什么region? 不是heap.
哎,小recruiter照本宣科问两问题,就被搞的丑态百出,落花流水.
avatar
c*l
3
比如最好是前级输出是low imp,后级输入是high imp?
avatar
D*y
4
if you install web developer express 2008, you do not need IIS to debug/run
your application

VBSript
ASP?

【在 e********0 的大作中提到】
: 新添了个Dell Laptop with Vista Home Basic, but it does not support IIS (
: Internet Information Services). 本想沿着微软大道一直走下去,用 ASP,VBSript
: 建个网站,可现在要么得upgrade Vista to Premium or Ultimate (总觉得初学阶段不
: 值得花那吗多银子), 要么 downgrade to XP (I have XP CD but it may not be
: that easy. Some articles say Dell may have changed BIOS to prevent the
: system from being changed/downgraded and some people got stuck there).
: 还有一个选择就是install XAMPP on my Vista Home Basic,然后用 PHP and Mysql.
: 不知 if XAMPP has any issues on Vista Home Basi

avatar
w*g
5

要看情况。如果object很小,复制方便就用object container。如果object很大,或者
不允许复制(比如对应硬件或GUI对象的object)则用指针container。
程序在运行时内存被分成几个区域,分别是程序区(text), 已初始化数据区(data)和未
初始化数据区(bss),heap和stack。text和data是从程序中直接读入的,bss在程序初
始化时分配(因为未初始化,程序中只需要保存大小,不需要保存内容),而heap和
stack则是运行时动态分配的,大小可以变化。static变量如果初始化了那么存在data
区,如果未初始化则存在bss区,反正不是存在heap或stack。

【在 b***y 的大作中提到】
: 1. 存指针的container和存object的container, 哪个更efficient.
: 2. static变量存放在什么region? 不是heap.
: 哎,小recruiter照本宣科问两问题,就被搞的丑态百出,落花流水.

avatar
f*0
6
impedance matching is rarely required for anything other than rf. in those
cases, you want the prior amp's output impedance to be low and the input
impedance of the next amp to be high.
avatar
l*a
7
用microsoft virtual pc 2007. really useful and easy to use. I have 8 virtual
machines (OS) 当然不是同时用. You can install XP on top of Vista home.

VBSript
ASP?

【在 e********0 的大作中提到】
: 新添了个Dell Laptop with Vista Home Basic, but it does not support IIS (
: Internet Information Services). 本想沿着微软大道一直走下去,用 ASP,VBSript
: 建个网站,可现在要么得upgrade Vista to Premium or Ultimate (总觉得初学阶段不
: 值得花那吗多银子), 要么 downgrade to XP (I have XP CD but it may not be
: that easy. Some articles say Dell may have changed BIOS to prevent the
: system from being changed/downgraded and some people got stuck there).
: 还有一个选择就是install XAMPP on my Vista Home Basic,然后用 PHP and Mysql.
: 不知 if XAMPP has any issues on Vista Home Basi

avatar
b*y
8
多谢回答。第一个问题我一提到assignment operation,她马上就不问了,难道是答对
了?但她问的是efficiency啊,是不是应该说指针的new操作花很多时间?
第二个问题,貌似你是对的,但这应该取绝于编译器吧,有些OS不支持memory
segmentation.

data

【在 w***g 的大作中提到】
:
: 要看情况。如果object很小,复制方便就用object container。如果object很大,或者
: 不允许复制(比如对应硬件或GUI对象的object)则用指针container。
: 程序在运行时内存被分成几个区域,分别是程序区(text), 已初始化数据区(data)和未
: 初始化数据区(bss),heap和stack。text和data是从程序中直接读入的,bss在程序初
: 始化时分配(因为未初始化,程序中只需要保存大小,不需要保存内容),而heap和
: stack则是运行时动态分配的,大小可以变化。static变量如果初始化了那么存在data
: 区,如果未初始化则存在bss区,反正不是存在heap或stack。

avatar
n*y
9
depends on you want current gain or voltage gain.
By the way, it is better that you read textbooks more carefully.

【在 c*******l 的大作中提到】
: 比如最好是前级输出是low imp,后级输入是high imp?
avatar
i*r
10
指针不一定需要new吧?
如果object已经在那里了,取一下地址就可以了

【在 b***y 的大作中提到】
: 多谢回答。第一个问题我一提到assignment operation,她马上就不问了,难道是答对
: 了?但她问的是efficiency啊,是不是应该说指针的new操作花很多时间?
: 第二个问题,貌似你是对的,但这应该取绝于编译器吧,有些OS不支持memory
: segmentation.
:
: data

avatar
c*l
11
恩恩
我没有看书,光看袅录象 :(

【在 n*****y 的大作中提到】
: depends on you want current gain or voltage gain.
: By the way, it is better that you read textbooks more carefully.

avatar
s*g
12
再练练吧

【在 b***y 的大作中提到】
: 1. 存指针的container和存object的container, 哪个更efficient.
: 2. static变量存放在什么region? 不是heap.
: 哎,小recruiter照本宣科问两问题,就被搞的丑态百出,落花流水.

avatar
C*g
13
the high impedance node is sensitive to interference and noise.
If the interface is off-chip it is really a problem since your circuit will
easily pick up noise and so on from the ambient;
If the interface is on-chip it might be better
If the output is low imp, the input of the following stage is high imp, then
it is a low impedance node and therefore free of the problem I mentioned
above.
There might be other reasons though...

【在 c*******l 的大作中提到】
: 比如最好是前级输出是low imp,后级输入是high imp?
avatar
b*y
14
您这练过的先给个标准答案。

【在 s*****g 的大作中提到】
: 再练练吧
avatar
M*c
15
depends upon what you want from the circuit
RF matching?
power system stability?

【在 c*******l 的大作中提到】
: 比如最好是前级输出是low imp,后级输入是high imp?
avatar
n*g
16
这些问题没啥实际意义,正真的牛人是不需要知道的;据说做出Quake游戏的那个大牛
每天编程17小时以上,当初上大学的时候也被计算机课给郁闷的不得了,最后只好退学
了。
相关阅读
logo
联系我们隐私协议©2024 redian.news
Redian新闻
Redian.news刊载任何文章,不代表同意其说法或描述,仅为提供更多信息,也不构成任何建议。文章信息的合法性及真实性由其作者负责,与Redian.news及其运营公司无关。欢迎投稿,如发现稿件侵权,或作者不愿在本网发表文章,请版权拥有者通知本网处理。