s*****w 发帖数: 1527 | 1 1. Given inputs X, Y, Z and operations | and & (meaning bitwise OR and AND,
respectively)
What is output equal to in
output = (X & Y) | (X & Z) | (Y & Z)
2. why const char* can be both a character and a string declaration ? | N*D 发帖数: 3641 | 2 1跟C++啥关系?不是数理逻辑吗?
,
【在 s*****w 的大作中提到】 : 1. Given inputs X, Y, Z and operations | and & (meaning bitwise OR and AND, : respectively) : What is output equal to in : output = (X & Y) | (X & Z) | (Y & Z) : 2. why const char* can be both a character and a string declaration ?
| m********a 发帖数: 12601 | | d****v 发帖数: 458 | 4 1. X+Y+Z >=2 (0是false, 1是true的话)
2. 因为C++里这两个东西没区别吧,char* 也就是 string。放C#里就不成啊
。这是C 在C++里面的余孽吧 | J*****n 发帖数: 4859 | 5
玄,指针我是不知道,如果是ref,在传参数的时候,有时候只会对const型的进行转换
,如果不是const的ref,类型不符的话会抱错。
【在 d****v 的大作中提到】 : 1. X+Y+Z >=2 (0是false, 1是true的话) : 2. 因为C++里这两个东西没区别吧,char* 也就是 string。放C#里就不成啊 : 。这是C 在C++里面的余孽吧
| d****v 发帖数: 458 | 6 C 里面肯定没问题吧,C++应该也有可能吧
【在 J*****n 的大作中提到】 : : 玄,指针我是不知道,如果是ref,在传参数的时候,有时候只会对const型的进行转换 : ,如果不是const的ref,类型不符的话会抱错。
|
|