Redian新闻
>
Title of BEC written communication 该怎么写?
avatar
Title of BEC written communication 该怎么写?# Accounting - 会计审计
y*w
1
唉,老问题了,EAD还是H-1B extension,为保险起见,还是应该H-1B extension。只
是现在H-1B extension程序上麻烦了许多,有没有最近办过H-1B extension的同修,指
点一下如何证明LCA已经在公司相应board或者告示栏里展示了10天以上?
avatar
M*a
2
另一个奇怪的事儿:
你怎么身份变成用户了?我在telnet下面ctrl-w,你也不是斑竹
你现在还收到工资么?
avatar
w*s
3
i found PHY src at
.../linux-2.6.38/drivers/net/phy,
there's one for broadcom chip.
how about MAC driver on top of PHY ?
avatar
i*o
4
一直以为int和long不管32还是64都是4个byte,怎么apple说int和long在64位下不一样
大?难道ansi没这方面的规定?
★ 发自iPhone App: ChineseWeb 8.0.1
avatar
f*7
5
三道问答题里最开始的title和最后的署名正确格式是什么呢? 谢谢!
avatar
y*w
6
Ding

【在 y*****w 的大作中提到】
: 唉,老问题了,EAD还是H-1B extension,为保险起见,还是应该H-1B extension。只
: 是现在H-1B extension程序上麻烦了许多,有没有最近办过H-1B extension的同修,指
: 点一下如何证明LCA已经在公司相应board或者告示栏里展示了10天以上?

avatar
k*g
7

是被 MSVC 搞昏吧。除了 MSVC 有这样规定(为了 MS 自家代码的向後兼容),没听过
其他编译器有这样的保证。

【在 i*****o 的大作中提到】
: 一直以为int和long不管32还是64都是4个byte,怎么apple说int和long在64位下不一样
: 大?难道ansi没这方面的规定?
: ★ 发自iPhone App: ChineseWeb 8.0.1

avatar
m*n
8
char[4] 是否可以保证32位?
avatar
g*t
9
这是个compiler问题.

【在 m*******n 的大作中提到】
: char[4] 是否可以保证32位?
avatar
t*t
10
actually char[4] is guaranteed to be 4 bytes. however 1byte=8bit is not
guaranteed, although the risk is quite minimal.
for compatibility, try int32_t in , if it exist.

【在 g****t 的大作中提到】
: 这是个compiler问题.
avatar
p*w
11
这样可以自己定义吗
?
#ifndef int32
#if sizeof(long)==4
#define int32 long
#endif
#if sizeof(int)==4
#endif

【在 t****t 的大作中提到】
: actually char[4] is guaranteed to be 4 bytes. however 1byte=8bit is not
: guaranteed, although the risk is quite minimal.
: for compatibility, try int32_t in , if it exist.

avatar
d*i
12
ANSI C没有规定int和long的字节数,因为在不同的CPU架构和C编译器下,int和long的
字长都不一样,比如一般都认为int是32位,但是在有的16位MCU下,int却是16位。

【在 i*****o 的大作中提到】
: 一直以为int和long不管32还是64都是4个byte,怎么apple说int和long在64位下不一样
: 大?难道ansi没这方面的规定?
: ★ 发自iPhone App: ChineseWeb 8.0.1

avatar
d*i
13
所以比较好的方法是,针对不同的处理器,采用头文件types.h来自定义:
#ifdef _ARM_CORTEX
typedef int INT32;
typedef unsigned int UINT32;
typedef short INT16;
......
#endif

【在 i*****o 的大作中提到】
: 一直以为int和long不管32还是64都是4个byte,怎么apple说int和long在64位下不一样
: 大?难道ansi没这方面的规定?
: ★ 发自iPhone App: ChineseWeb 8.0.1

avatar
n*e
14
不要看见什么就来黑微软,微软这么做是因为AMD64上的int是4位的。
http://wiki.inspircd.org/Type_Sizes#AMD64_Gentoo_Linux_64bit.2C

【在 k**********g 的大作中提到】
:
: 是被 MSVC 搞昏吧。除了 MSVC 有这样规定(为了 MS 自家代码的向後兼容),没听过
: 其他编译器有这样的保证。

avatar
v*u
15
同意. 规定是 long的位数>=int

【在 d****i 的大作中提到】
: ANSI C没有规定int和long的字节数,因为在不同的CPU架构和C编译器下,int和long的
: 字长都不一样,比如一般都认为int是32位,但是在有的16位MCU下,int却是16位。

avatar
c*m
16
我印象谭浩强的书里有说这个:
在 ANSI C里,
short <= int <= long
而且说了具体每个编译器实现都可以不一样,只要实现这个公式就是标准。
avatar
k*g
17

(我是软粉。)
This post talks about integer widths from the language / compiler
perspective. This post is strictly unrelated to the design or limitations of
the underlying CPU architecture. In all cases, compiler has the
responsibility of enabling, and if necessary, emulating the integer types of
various widths.
Turbo Pascal supports 32-bit integer types on 16-bit DOS processes and CPUs.
It provides the REAL floating point type, which is 6 bytes (48 bits) and is
strictly emulated in software.

【在 n***e 的大作中提到】
: 不要看见什么就来黑微软,微软这么做是因为AMD64上的int是4位的。
: http://wiki.inspircd.org/Type_Sizes#AMD64_Gentoo_Linux_64bit.2C

avatar
t*t
18
大多数int都是32位的. 但楼主问的不是这个, 他问的是为什么long居然是64位的. 我们
说, 除了MSVC, 其它64位编译器几乎都规定long是64位的. 你贴的link恰好说明了这一
点.
另外, "AMD64上的int是4位(4byte?)"这个说法本身不make sense. int的宽度并不由CP
U决定.

【在 n***e 的大作中提到】
: 不要看见什么就来黑微软,微软这么做是因为AMD64上的int是4位的。
: http://wiki.inspircd.org/Type_Sizes#AMD64_Gentoo_Linux_64bit.2C

avatar
x*u
19
MS的编译器在AMD64架构和安腾上的字节长也不一样。

我们
CP

【在 t****t 的大作中提到】
: 大多数int都是32位的. 但楼主问的不是这个, 他问的是为什么long居然是64位的. 我们
: 说, 除了MSVC, 其它64位编译器几乎都规定long是64位的. 你贴的link恰好说明了这一
: 点.
: 另外, "AMD64上的int是4位(4byte?)"这个说法本身不make sense. int的宽度并不由CP
: U决定.

avatar
c*p
20
实现决定。long>=int即可。
现在多数64位编译器long都是64位。

【在 i*****o 的大作中提到】
: 一直以为int和long不管32还是64都是4个byte,怎么apple说int和long在64位下不一样
: 大?难道ansi没这方面的规定?
: ★ 发自iPhone App: ChineseWeb 8.0.1

avatar
n*e
21
Huh, you are correct on this. My apologies.

of
of
CPUs.
is

【在 k**********g 的大作中提到】
:
: (我是软粉。)
: This post talks about integer widths from the language / compiler
: perspective. This post is strictly unrelated to the design or limitations of
: the underlying CPU architecture. In all cases, compiler has the
: responsibility of enabling, and if necessary, emulating the integer types of
: various widths.
: Turbo Pascal supports 32-bit integer types on 16-bit DOS processes and CPUs.
: It provides the REAL floating point type, which is 6 bytes (48 bits) and is
: strictly emulated in software.

相关阅读
logo
联系我们隐私协议©2024 redian.news
Redian新闻
Redian.news刊载任何文章,不代表同意其说法或描述,仅为提供更多信息,也不构成任何建议。文章信息的合法性及真实性由其作者负责,与Redian.news及其运营公司无关。欢迎投稿,如发现稿件侵权,或作者不愿在本网发表文章,请版权拥有者通知本网处理。