私は多くのプログラミング言語 (Java、Erlang、python など) をチェックしましたが、C/C++ を学ぶのは難しいと感じました。
例1:
#include <iostream>
int main() {
int ar1 = {1,2,3};
int *p1 = ar1;
char *msg = "message";
std::cout << "addr: " << p1 << std::endl ;//prints the array address
std::cout << "value: " << *p1 << std::endl ;//prints the first element
std::cout << "addr: " << msg << std::endl ;//prints "message" , wtf why not the addr?how can i get its address?
std::cout << "value: " << *msg << std::endl ;//prints the first character
}
例2:
#include <iostream>
int main() {
int n1 = 5;
int *p1 = &n1;
int &r1 = *p1; // why not: int &r1 = p1; ,*p1 is NOT an address,p1 is.This does not make any sense...
}
これらの例を教えてください。これらを解決せずに Cplusplus の勉強を続けることはできません。
御時間ありがとうございます。