/*
* Test1.cpp
*
* Created on: Feb 13, 2014
* Author: user
*/
#ifndef TEST1_H_
#define TEST1_H_
#include<iostream>
#include<omnetpp.h>
namespace aaa
{
class Test1
{
public:
virtual void init();
};
} /* namespace aaa */
#endif /* TEST1_H_ */
#include "Test1.h"
namespace aaa
{
#include <cassert>
//Define_Module(A1)
void Test1::init()
{
//std::cout<<"hello,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,";
ev<<"hello,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,";
}
} /* namespace aaa */
我的代码中可能出现的错误是什么?为什么不打印?