main함수에서 클래스 객체생성하면서 멤버변수 초기화할때 초기화할값순서 무슨기준임

클래스 멤버변수 선언 위에서 아래 순서냐

class 이름{

private:

long

double

int순이면

클래스 객체이름={long,double,int}이렇게 해야됨?