In this https://github.com/pocoproject/poco/blob/dcdcee5afab6e8972f1b144ef7e7e884f85e83a3/Net/samples/Ping/src/Ping.cpp sample link, the constructor is defined as
public:
    Ping(): 
        _helpRequested(false), 
        _icmpClient(IPAddress::IPv4),
        _repetitions(4), 
        _target("localhost")
    {
    }
May i know what are these _variables called? I have never seen constructors defined like this before.
