Answers for "c++ what doe explicit mean"

C++
-1

explicit in c++ meaning

class String {
public:
    explicit String (int n); //allocate n bytes
    String(const char *p); // initialize sobject with string p
};
Posted by: Guest on March-04-2021

Browse Popular Code Answers by Language