0
私はomnetppとmiximで与えられたwiserouteの例を調べていました。 と次のコードが見つかりました。omnetppプロジェクトのコンストラクタ
WiseRoute(): BaseNetwLayer()
, routeTable()
, floodTable()
, headerLength(0)
, macaddress()
, sinkAddress()
, useSimTracer(false)
, rssiThreshold(0)
, routeFloodsInterval(0)
, floodSeqNumber(0)
, tracer(NULL)
, routeFloodTimer(NULL)
, nbDataPacketsForwarded(0)
, nbDataPacketsReceived(0)
, nbDataPacketsSent(0)
, nbDuplicatedFloodsReceived(0)
, nbFloodsSent(0)
, nbPureUnicastSent(0)
, nbRouteFloodsSent(0)
, nbRouteFloodsReceived(0)
, nbUnicastFloodForwarded(0)
, nbPureUnicastForwarded(0)
, nbGetRouteFailures(0)
, nbRoutesRecorded(0)
, nbHops(0)
, receivedRSSI()
, routeRSSI()
, allReceivedRSSI()
, allReceivedBER()
, routeBER()
, receivedBER()
, nextHopSelectionForSink()
, trace(false), stats(false), debug(false)
{}
現在、WiseRoute()はデフォルトコンストラクタであり、何もしません。関数名と本文の間のすべての関数は何をしますか?
[このコンストラクタのこの奇妙なコロンメンバー構文は何ですか?](http://stackoverflow.com/questions/1711990/what-is-this-weird-colon-member-syntax-in-the -constructor) –