printf に少し問題があり、その理由がわかりません。
=>kernel.h
#ifndef KERNEL_H
#define KERNEL_H
namespace kernel
{
extern const double h;
}
#endif // KERNEL_H
=>kernel.cpp
#include <kernel.h>
namespace kernel
{
const double kernel::h=85.0;
}
=>main.cpp
#include "kernel.h"
#include <iostream>
//#include <cstdio>//With cstdio, it is the same problem !
int main(int argc, char *argv[])
{
using namespace kernel;
double a = h;
printf("printf a is %d\n",a);
std::cout<<"std::cout a is " << a << std::endl;
printf("printf h is %d\n",h);
printf("printf kernel::h is %d\n",kernel::h);
std::cout << "std::cout h is " << h << std::endl;
return 0;
}
そして、コンソールでの出力は次のとおりです。
printf a is 0
std::cout a is 85
printf h is 0
printf kernel::h is 0
std::cout h is 85
printf が機能しないのはなぜですか? C関数だから?
ありがとう