zoukankan
html css js c++ java
继续测试const
void
TestConst4()
{
char
str1[]
=
"
abc
"
;
char
str2[]
=
"
abc
"
;
const
char
str3[]
=
"
abc
"
;
const
char
str4[]
=
"
abc
"
;
const
char
*
str5
=
"
abc
"
;
const
char
*
str6
=
"
abc
"
;
cout
<<
(str1
==
str2)
<<
endl;
cout
<<
(str2
==
str3)
<<
endl;
cout
<<
(str3
==
str4)
<<
endl;
cout
<<
(str4
==
str5)
<<
endl;
cout
<<
(str5
==
str6)
<<
endl;
}
结果:
0
0
0
0
1
查看全文
相关阅读:
喜得千金
ASP.NET MVC +EasyUI 权限设计(四)角色动作
SQL Server 2008 远程过程调用失败
ASP.NET MVC +EasyUI 权限设计(三)基础模块
ASP.NET MVC +EasyUI 权限设计(二)环境搭建
ASP.NET MVC +EasyUI 权限设计(一)开篇
Entity Framework学习笔记(六)----使用Lambda查询Entity Framework(1)
暂停更新Blog
Entity Framework学习笔记(五)----Linq查询(2)---贪婪加载
Exp9 Web安全基础
原文地址:https://www.cnblogs.com/qkhh/p/1038205.html
最新文章
Unity射击游戏实例—物理碰撞的实现
Unity射击实例讲解—子弹创建
Unity射击实例讲解—主角创建
C#(九)基础篇—静态成员与异常处理
unity入门—资源导入与场景创建
C#(八)基础篇—继承和多态
unity入门—五分钟制作一个理论上的游戏
C#(七)基础篇—基本I/O操作
C#(六)基础篇—数组
Mac系统常用快捷键大全
热门文章
windows端微信多开小方法
es6新特性--转载于https://www.cnblogs.com/ruhaoren/p/11575179.html
uniapp小记
转载rn开源项目
mui框架打包遇到问题及时间格式化问题
记录打包遇到的问题
js 字符串和16进制的互相转换
微信小程序二维for循环
快速删除项目下每个.svn文件(转载)
小兵眼中的Java Struts2
Copyright © 2011-2022 走看看