Redian新闻
>
求推荐最好的track device & anti-theft 的app
avatar
求推荐最好的track device & anti-theft 的app# PDA - 掌中宝
w*g
1
运行一下 程序:
int main() {
const int i = 0;
int * j;
cout << "&j=" << &j << endl;
cout << "&i=" << &i << endl;
cout << "j=" << j << endl;
j = const_cast(&i);
*j = 2;
cout << "i=" << i << endl;
cout << "*j=" << *j << endl;
cout << "j=" << j << endl;
cout << "&i=" <}
得到结果:
&j=0xbf93a658
&i=0xbf93a65c
j=0
i=0
*j=2
j=0xbf93a65c
&i=0xbf93a65c
这就是说:j 和&i是一样的,但是为什么i和*j不一样呢?
avatar
l*n
2
原本打算到3岁开始教儿子画画的,今天儿子跑到我的画室拿起几支油画笔在我画好的
画布上乱挥,这个summer很boring,索性让孩子画画吧,于是搬个小桌子到前院,水,
调色盘,画纸就是挂历的反面,这小子的处女作开始了。。。。
avatar
S*t
3
昨天手机差的丢,才发觉手机上有个track location的app 多重要,希望大家推荐款好
用的,谢谢!最好能有如下功能:
track location using GPS or wifi or 3/4G
remotely lock screen
remote ring device
remotely wipe phone
谢谢!
avatar
s*n
4
looks like j is int pointer. and const-cast just removes the const of the
pointer.

【在 w****g 的大作中提到】
: 运行一下 程序:
: int main() {
: const int i = 0;
: int * j;
: cout << "&j=" << &j << endl;
: cout << "&i=" << &i << endl;
: cout << "j=" << j << endl;
: j = const_cast(&i);
: *j = 2;
: cout << "i=" << i << endl;

avatar
r*h
5
看这架势很有前途啊,我们娃也是2岁,都是拿着水彩笔飞速地乱划拉一通,毫无耐心
avatar
g*i
6
android的话装啥都白搭,捡来或偷来直接format /data
avatar
M*5
7
This is undefined behavior of const_cast. So that's the reason why you need
to take care when you use those cast features.
You can google const_cast undefined behavior.
avatar
l*n
8
这要看娃是用什么笔画了,我就发现他用粉笔或蜡笔舞几个线条就停止了,用颜料调水
呢能画1小时呢,我现在也不教他什么技法,就让他当个toy玩,只要他有兴趣就好。要
么你也给娃try一下。。。

【在 r*****h 的大作中提到】
: 看这架势很有前途啊,我们娃也是2岁,都是拿着水彩笔飞速地乱划拉一通,毫无耐心
: 。

avatar
c*y
9
如果加了屏幕锁,一时半会不能被format,
倒是小偷再捣鼓的时候会被摄像头拍到,
然后再云给你。
大多数小偷都不是high teck
avatar
r*u
10
This doesn't explain his question. Since i & *j points to the same address,
why i = 0 but *j = 2?

【在 s*****n 的大作中提到】
: looks like j is int pointer. and const-cast just removes the const of the
: pointer.

avatar
r*h
11
我家没颜料啊,而且我基本肯定她不是那块料-_-
我小时候我爸倒是教过我来着,我是既不讨厌也不热爱,后来就直接搁置了。。你看来
是个行家哦

【在 l****n 的大作中提到】
: 这要看娃是用什么笔画了,我就发现他用粉笔或蜡笔舞几个线条就停止了,用颜料调水
: 呢能画1小时呢,我现在也不教他什么技法,就让他当个toy玩,只要他有兴趣就好。要
: 么你也给娃try一下。。。

avatar
D*U
12
装了一个norton security
试过一次短信lock wipe
还能使

【在 S********t 的大作中提到】
: 昨天手机差的丢,才发觉手机上有个track location的app 多重要,希望大家推荐款好
: 用的,谢谢!最好能有如下功能:
: track location using GPS or wifi or 3/4G
: remotely lock screen
: remote ring device
: remotely wipe phone
: 谢谢!

avatar
x*y
13
change the definition of "const int i = 0" to
"volatile const int = 0", then i will be 2. The reason is due to
optimization, that i will be read from register, not from memory.

【在 w****g 的大作中提到】
: 运行一下 程序:
: int main() {
: const int i = 0;
: int * j;
: cout << "&j=" << &j << endl;
: cout << "&i=" << &i << endl;
: cout << "j=" << j << endl;
: j = const_cast(&i);
: *j = 2;
: cout << "i=" << i << endl;

avatar
l*a
14
target有那种小的调色板,给小孩乱画挺好的。

【在 r*****h 的大作中提到】
: 我家没颜料啊,而且我基本肯定她不是那块料-_-
: 我小时候我爸倒是教过我来着,我是既不讨厌也不热爱,后来就直接搁置了。。你看来
: 是个行家哦

avatar
h*k
15
volatile关键字会强迫从内存中读取,而不会只返回寄存器中的值。
我觉得是compiler直接优化,把输出i的值的语句中的i直接替换成0,因为i声明成
const变量。

【在 x***y 的大作中提到】
: change the definition of "const int i = 0" to
: "volatile const int = 0", then i will be 2. The reason is due to
: optimization, that i will be read from register, not from memory.

avatar
s*e
16
LZ的声音好像蒋雯丽呀,呵呵

【在 l****n 的大作中提到】
: 这要看娃是用什么笔画了,我就发现他用粉笔或蜡笔舞几个线条就停止了,用颜料调水
: 呢能画1小时呢,我现在也不教他什么技法,就让他当个toy玩,只要他有兴趣就好。要
: 么你也给娃try一下。。。

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