c语言中@的意思是什么? 10

程序中有这样一句:volatileab@c其中a,b和c都是宏定义的变量不知是什么意思?求高人指点!实在不好意思说错了,c是宏定义的变量,a是一个结构体... 程序中有这样一句:
volatile a b@c
其中a,b和c都是宏定义的变量
不知是什么意思?求高人指点!
实在不好意思说错了,c是宏定义的变量,a是一个结构体
展开
 我来答
狼牙0354
推荐于2017-09-11 · 超过11用户采纳过TA的回答
知道答主
回答量:47
采纳率:0%
帮助的人:16.9万
展开全部
@可以这样用
Declaration = <TypeSpec> <Declarator>[@<Address>|@"<Section>"]
[= <Initializer>];
Global Variable Address Modifier (@address)
You can assign global variables to specific addresses with the global variable address modifier. These variables are called 'absolute variables'. They are useful for accessing memory mapped I/O ports and have the following syntax:

Declaration = <TypeSpec> <Declarator>[@<Address>|@"<Section>"]
[= <Initializer>];
<TypeSpec> is the type specifier, e.g., int, char

<Declarator> is the identifier of the global object, e.g., i, glob

<Address> is the absolute address of the object, e.g., 0xff04, 0x00+8

<Initializer> is the value to which the global variable is initialized.

A segment is created for each global object specified with an absolute address. This address must not be inside any address range in the SECTIONS entries of the link parameter file. Otherwise, there would be a linker error (overlapping segments). If the specified address has a size greater than that used for addressing the default data page, pointers pointing to this global variable must be "__far". An alternate way to assign global variables to specific addresses is (Listing 8.8).

Listing 8.8 Assigning global variables to specific addresses

#pragma DATA_SEG [__SHORT_SEG] <segment_name>
setting the PLACEMENT section in the linker parameter file. An older method of accomplishing this is shown in Listing 8.9.

Listing 8.9 Another means of assigning global variables to specific addresses

<segment_name> INTO READ_ONLY <Address> ;
Listing 8.10 is a correct and incorrect example of using the global variable address modifier and Listing 8.11 is a possible PRM file that corresponds with example Listing.

Listing 8.10 Using the global variable address modifier
//看这意思,就是把int型变量glob地址从0x0500开始,并把值10初始化时放在0x0500
int glob @0x0500 = 10; // OK, global variable "glob" is
// at 0x0500, initialized with 10
void g() @0x40c0; // error (the object is a function)

void f() {
int i @0x40cc; // error (the object is a local variable)
}
金色潜鸟
2013-07-30 · TA获得超过3.2万个赞
知道大有可为答主
回答量:1.3万
采纳率:89%
帮助的人:5542万
展开全部
@ 只能放在字符,字符串或注解行里使用。
例如: char s[]="b@c"; // @ in string
它不是运算符,也不能作为标识符的一部分。

volatile 变量 是 易变化变量,编译器不得对它作优化处理。
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
PQHrun1111
2017-03-07
知道答主
回答量:3
采纳率:0%
帮助的人:2605
展开全部
#define  AP_CODE_ADDR_START  0
#define  AP_CODE_LEN         0x14000
const uint16_t FixData@(AP_CODE_ADDR_START + AP_CODE_LEN-2) = 0x55aa;
/************以下解释***************/
定义uint16_t类型的FixData变量,并且指定其初始地址,并且变量赋值为0x55aa。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
一变班爱麻啊堡0J
高粉答主

2020-01-13 · 醉心答题,欢迎关注
知道答主
回答量:11.4万
采纳率:2%
帮助的人:5528万
展开全部
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百话电子
2013-07-30 · TA获得超过854个赞
知道小有建树答主
回答量:643
采纳率:50%
帮助的人:260万
展开全部
表示不显示@后面的命令
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 3条折叠回答
收起 更多回答(5)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式