Redian新闻
>
C pre-compiling 如何用macro替换括号?
avatar
g*g
2
看来这两年到顶了。
avatar
r*u
3
我需要长期聘用保姆周末照顾小孩,做简单家务。具体是周六早上到下午,按天付薪酬
。工作地点在Hartford Downtown。具体请打电话至860-471-0694或者站内发信。
avatar
l*u
4
发现身边一些朋友,特别只看颜值,看电视剧,看节目,都是看到帅哥就有兴趣,看到
不是帅哥就没兴趣,不管节目好不好看。
我就跌当时李敏镐红的时候,我身边很多人都迷恋的不要不要的,看到他出现就会尖叫
,要知道吗,这些都是已婚妇女。
然后还很花痴的说,如果自己老公有李敏镐一样帅就好了,或者一半帅就好了。
真是受不了。
又说如果李敏镐约自己,自己可以无条件献身。
后来那个来自星星的你红了,都教授红了,他们又都迷恋都教授了。
有时候不知道是说自己冷漠好,还是自己对这种漂亮男人没什么兴趣,总是觉得漂亮的
男人靠不住,所以自己不喜欢这些漂亮男人。
好像也不怎么喜欢不好看的男人。
哈哈,我写到这里,发现自己也是有病。
丑的就得不好看,恶心,好看的觉得不安全,危险。
avatar
c*k
5
比方说想把所有的foo(3),替换成bar,但是foo(1), foo(2), foo(4), .... foo(x)都
不变
avatar
c*o
7
有点好玩呢,我定下的GOLD买入价就是在700块左右,居然让我蒙对一次?
avatar
b*n
8
(a==3)?bar:a ?
用括弧啊,安全的问题自己就考虑了

【在 c***k 的大作中提到】
: 比方说想把所有的foo(3),替换成bar,但是foo(1), foo(2), foo(4), .... foo(x)都
: 不变

avatar
f*o
9

都最便宜了还讲究这么多

【在 c*******h 的大作中提到】
: 有没有带前级输出的?
avatar
s*n
10
Is there a reason to believe what MS says?

【在 g****g 的大作中提到】
: 看来这两年到顶了。
avatar
c*k
11
pre-processor啊,不是run-time替换
比如#define foo(3) bar之类的。
avatar
c*h
12
俺就想要个带这些乱七八糟解码的前级。

【在 f******o 的大作中提到】
:
: 都最便宜了还讲究这么多

avatar
g*g
13
最近ETF持仓量破纪录,这在经济复苏后会减少,
黄金今后几年产量会小幅增加,产业需求量这两年减少
黄金的开采成本600$-。

【在 s********n 的大作中提到】
: Is there a reason to believe what MS says?
avatar
b*n
14
i don't think you get different code using 'if' with optimisation anyway

【在 c***k 的大作中提到】
: pre-processor啊,不是run-time替换
: 比如#define foo(3) bar之类的。

avatar
s*n
15
Gold has the characteristics of both a commodity and a currency.
As a result, you cannot simply use the theory to price a commodity
to price gold.

【在 g****g 的大作中提到】
: 最近ETF持仓量破纪录,这在经济复苏后会减少,
: 黄金今后几年产量会小幅增加,产业需求量这两年减少
: 黄金的开采成本600$-。

avatar
c*k
16
早知道把问题说明白就好了
VC有个compiler extension:declspec(selectany)
declspec就是一个声明之类的东西,括号里面可以是各种东西
gcc没这个,但有一个类似的
__attribute__((weak))
因为有太多这样的东西了 (> 10000),所以我需要一个macro
#define declspec(selectany) __attribute__((weak))
但这样是不行的,因为macro里,括号表示argument
这样所有的declspec(阿猫阿狗)都会被替换了
avatar
l*n
17
MS说什么反着听错不了, 呵呵

【在 s********n 的大作中提到】
: Is there a reason to believe what MS says?
avatar
b*n
18
早说么。。。
没法

【在 c***k 的大作中提到】
: 早知道把问题说明白就好了
: VC有个compiler extension:declspec(selectany)
: declspec就是一个声明之类的东西,括号里面可以是各种东西
: gcc没这个,但有一个类似的
: __attribute__((weak))
: 因为有太多这样的东西了 (> 10000),所以我需要一个macro
: #define declspec(selectany) __attribute__((weak))
: 但这样是不行的,因为macro里,括号表示argument
: 这样所有的declspec(阿猫阿狗)都会被替换了

avatar
w*u
19
就那些没用的美纸,还想700张换黄金

【在 g****g 的大作中提到】
: 看来这两年到顶了。
avatar
X*r
20
你其它那些阿猫阿狗准备怎么办?
要是阿猫阿狗的种类不多的话,你可以这么办:
#define declspec(x) declspec_##x
#define declspec_selectany __attribute__((weak))
#define declspec_dllimport declspec(dllimport)
#define declspec_dllexport declspec(dllexport)
其它阿猫阿狗同理。
不过你真的想要declspec(阿猫阿狗)维持原样?不是__declspec(阿猫阿狗)?

【在 c***k 的大作中提到】
: 早知道把问题说明白就好了
: VC有个compiler extension:declspec(selectany)
: declspec就是一个声明之类的东西,括号里面可以是各种东西
: gcc没这个,但有一个类似的
: __attribute__((weak))
: 因为有太多这样的东西了 (> 10000),所以我需要一个macro
: #define declspec(selectany) __attribute__((weak))
: 但这样是不行的,因为macro里,括号表示argument
: 这样所有的declspec(阿猫阿狗)都会被替换了

avatar
t*3
21
still too high.
compare to all other major commodity, gold is overpriced too much.
The metal has limit industrial usage. I agree Chinese gov. to buy commod
ities, but gold is not a good choice at all.

【在 g****g 的大作中提到】
: 看来这两年到顶了。
avatar
t*t
22
t很好很强大.

【在 X****r 的大作中提到】
: 你其它那些阿猫阿狗准备怎么办?
: 要是阿猫阿狗的种类不多的话,你可以这么办:
: #define declspec(x) declspec_##x
: #define declspec_selectany __attribute__((weak))
: #define declspec_dllimport declspec(dllimport)
: #define declspec_dllexport declspec(dllexport)
: 其它阿猫阿狗同理。
: 不过你真的想要declspec(阿猫阿狗)维持原样?不是__declspec(阿猫阿狗)?

avatar
c*t
23
中国目前是世界第一大黄金生产国,但黄金库存量却非常低
政府如果真的开始搞赤字刺激经济,备一点黄金还是必要的

【在 t**3 的大作中提到】
: still too high.
: compare to all other major commodity, gold is overpriced too much.
: The metal has limit industrial usage. I agree Chinese gov. to buy commod
: ities, but gold is not a good choice at all.

avatar
c*k
24
看来这是唯一的法子了:)
谢谢

【在 X****r 的大作中提到】
: 你其它那些阿猫阿狗准备怎么办?
: 要是阿猫阿狗的种类不多的话,你可以这么办:
: #define declspec(x) declspec_##x
: #define declspec_selectany __attribute__((weak))
: #define declspec_dllimport declspec(dllimport)
: #define declspec_dllexport declspec(dllexport)
: 其它阿猫阿狗同理。
: 不过你真的想要declspec(阿猫阿狗)维持原样?不是__declspec(阿猫阿狗)?

avatar
p*h
25
the mose overpriced one is the green paper issued by US FED.

【在 t**3 的大作中提到】
: still too high.
: compare to all other major commodity, gold is overpriced too much.
: The metal has limit industrial usage. I agree Chinese gov. to buy commod
: ities, but gold is not a good choice at all.

avatar
N*n
26
Theoretically impossible if you consider the cases where there might be a
whole bunch "#ifdef" and "#ifndef" in your code. You won't even know what
the content of the C code really is.
It's crazy macros like these making C-kind languages un-refactorable and
badly designed languages in general.

【在 c***k 的大作中提到】
: 比方说想把所有的foo(3),替换成bar,但是foo(1), foo(2), foo(4), .... foo(x)都
: 不变

avatar
l*n
27
Gold is not commodity, but hard currency

【在 t**3 的大作中提到】
: still too high.
: compare to all other major commodity, gold is overpriced too much.
: The metal has limit industrial usage. I agree Chinese gov. to buy commod
: ities, but gold is not a good choice at all.

avatar
c*k
28
Legacy code啊,我也很头疼……

【在 N********n 的大作中提到】
: Theoretically impossible if you consider the cases where there might be a
: whole bunch "#ifdef" and "#ifndef" in your code. You won't even know what
: the content of the C code really is.
: It's crazy macros like these making C-kind languages un-refactorable and
: badly designed languages in general.

avatar
N*n
29
I think it's going toward 1700.

【在 g****g 的大作中提到】
: 看来这两年到顶了。
avatar
b*n
30
is it possible like this:
#define selectany )) void dummy(); __attribute__((weak
strictly depends on how it is used.

【在 X****r 的大作中提到】
: 你其它那些阿猫阿狗准备怎么办?
: 要是阿猫阿狗的种类不多的话,你可以这么办:
: #define declspec(x) declspec_##x
: #define declspec_selectany __attribute__((weak))
: #define declspec_dllimport declspec(dllimport)
: #define declspec_dllexport declspec(dllexport)
: 其它阿猫阿狗同理。
: 不过你真的想要declspec(阿猫阿狗)维持原样?不是__declspec(阿猫阿狗)?

avatar
g*g
31
Let's short gold now.
avatar
t*3
32
you never know, in history, many thing are "hard currency"
Salt, Shell, Silver and many others
what about now?

【在 l****n 的大作中提到】
: Gold is not commodity, but hard currency
avatar
w*u
33
we won't live that long to behold that happens on gold.

【在 t**3 的大作中提到】
: you never know, in history, many thing are "hard currency"
: Salt, Shell, Silver and many others
: what about now?

avatar
t*3
34
yet you can not take anything with you when you are gone.

【在 w*****u 的大作中提到】
: we won't live that long to behold that happens on gold.
avatar
w*u
35
can buy a better tomb

【在 t**3 的大作中提到】
: yet you can not take anything with you when you are gone.
avatar
o*g
36
Go ahead to short gold. You don't need to convince other people.

【在 t**3 的大作中提到】
: you never know, in history, many thing are "hard currency"
: Salt, Shell, Silver and many others
: what about now?

avatar
t*3
37
I buy or sell stock, will not touch gold.

【在 o*******g 的大作中提到】
: Go ahead to short gold. You don't need to convince other people.
avatar
g*g
38
commodity research in my firm suggests long physical gold, I guess I may buy
if it drops below 700$.
avatar
y*w
39
No use, 慈禧太后死后尸体被剥光,口中夜明珠被掏出。

【在 w*****u 的大作中提到】
: can buy a better tomb
avatar
w*u
40
大家都想这样,可是都等不到

buy

【在 g****g 的大作中提到】
: commodity research in my firm suggests long physical gold, I guess I may buy
: if it drops below 700$.

avatar
w*u
41
BSO自己跟慈僖一样有财

【在 y*******w 的大作中提到】
: No use, 慈禧太后死后尸体被剥光,口中夜明珠被掏出。
相关阅读
logo
联系我们隐私协议©2024 redian.news
Redian新闻
Redian.news刊载任何文章,不代表同意其说法或描述,仅为提供更多信息,也不构成任何建议。文章信息的合法性及真实性由其作者负责,与Redian.news及其运营公司无关。欢迎投稿,如发现稿件侵权,或作者不愿在本网发表文章,请版权拥有者通知本网处理。