Talula
I mean, what we can do in class is c++
Class is like a library... you use it like #include to add functionality to your program...
Talula
Please some examples provides me
If you don't know what it is, exmples would not be easy to understand it... do you know C?
Anmol
I am saying that what can we do with c++(class) I means in a company work on c++ and what can we do make a types of programs
Anmol
😂😂😂
Talula
I am saying that what can we do with c++(class) I means in a company work on c++ and what can we do make a types of programs
Bro... you have no idea of what you're talking about leave it... Go to bed... it's almost 12:00 in India... actually you may think you're saying something but you do not make any sense. It's like dog playing piano..
Pavel
I am saying that what can we do with c++(class) I means in a company work on c++ and what can we do make a types of programs
Why do you ask this? The questions you ask are kind of strange. I mean there should be some reason behind that, something that you want this information for?
Anmol
What's Overloading constructor explain with some examples??
Talula
Where are you living bro.. which country
I'm not a bro, I'm sis... and I live in India.
Anmol
I'm not a bro, I'm sis... and I live in India.
What's your name i thik he is not real name i am right or not
Pavel
??? Tell me anyone
Why can't you just Google it? There's plenty of info in the internet about that
Talula
??? Tell me anyone
Overloading construtor means to have constructor with same name but different arguments... so construtor could be called with different options.
Anmol
MᏫᎻᎯᎷᎷᎬᎠ
What kind of program can we create through class
I think he is coming from java background where everything is in a class
Anmol
No.
Why you are Indian i am right
Talula
Why you are Indian i am right
And? Do I have to know Hindi to be Indian?
Anmol
I think he is coming from java background where everything is in a class
No bro.. i am not learning about to java learn c language .
Pavel
Thanks but i want to learn something from this group
You just want other people to spent time on you, when you could spend a tiny effort to get the information by yourself.
MᏫᎻᎯᎷᎷᎬᎠ
MᏫᎻᎯᎷᎷᎬᎠ
I will answer it if I could
MᏫᎻᎯᎷᎷᎬᎠ
Just try to phrase it properly
MᏫᎻᎯᎷᎷᎬᎠ
Just ask it
Talula
Just ask it
He did and I answered it... but I don't know what is his next question.
MᏫᎻᎯᎷᎷᎬᎠ
ItzFlexy
Hello
MᏫᎻᎯᎷᎷᎬᎠ
MᏫᎻᎯᎷᎷᎬᎠ
Hello
Hello
Talula
Well I tried
All he wanted was... hey... I'm alone... talk to me...
Talula
Dima
Hello
Such a suspicious name
Dima
Welcome anyways
ItzFlexy
ItzFlexy
Hello
How are you doing
MᏫᎻᎯᎷᎷᎬᎠ
How are you doing
I'm good
Anmol
Just ask it
If I'm working in a company then what job they give me c ++ language
MᏫᎻᎯᎷᎷᎬᎠ
Such a suspicious name
Monitor the behavior
Talula
If I'm working in a company then what job they give me c ++ language
You should start like this... 1. Learn to express yourself properly in English. 2. Read some books how to Google 3. Google for the answers.
MᏫᎻᎯᎷᎷᎬᎠ
Feel comfortable with C++ Not c ++
ItzFlexy
MᏫᎻᎯᎷᎷᎬᎠ
You need those basic skills
ItzFlexy
That's why
MᏫᎻᎯᎷᎷᎬᎠ
Ops
MᏫᎻᎯᎷᎷᎬᎠ
Delete that
Dima
this is wrecked
Dima
I_Interface
Lol
Dima
/ban joined the group via ban invite link
MᏫᎻᎯᎷᎷᎬᎠ
Fuck?
Anmol
Feel comfortable with C++ Not c ++
I am learning c++ language i have not completed learn c++ language
Talula
/report
Dima
Banned already
Anmol
It's okay
I am waiting ..
Dima
for a starting gun?
MᏫᎻᎯᎷᎷᎬᎠ
Just wanna ask something about enums How does they decide the value of and enum's variant For example I always see code like if (Read | Write) how does the programmer decide its value so he gets behavior like that
MᏫᎻᎯᎷᎷᎬᎠ
Anmol
If I'm working in a company then what job they give me c ++ language
I am waiting this question provides with some examples @BOND_0O7
MᏫᎻᎯᎷᎷᎬᎠ
bitset?
Yeah In specific pattern What pattern?! Like 0x00001 0x00004 How does he decide the value
Dima
there are some solutions like
Dima
enum { Read = BIT_FLAG(1) };
Dima
bit_flag is some macro with stuff
Dima
x >> 2
Anmol
Bye
Dima
Bye
MᏫᎻᎯᎷᎷᎬᎠ
bit_flag is some macro with stuff
I'm talking about something like this: enum StandardButton { // keep this in sync with QDialogButtonBox::StandardButton and QPlatformDialogHelper::StandardButton NoButton = 0x00000000, Ok = 0x00000400, Save = 0x00000800, SaveAll = 0x00001000, Open = 0x00002000, Yes = 0x00004000, YesToAll = 0x00008000, No = 0x00010000, NoToAll = 0x00020000, Abort = 0x00040000, Retry = 0x00080000, Ignore = 0x00100000, Close = 0x00200000, Cancel = 0x00400000, Discard = 0x00800000, Help = 0x01000000, Apply = 0x02000000, Reset = 0x04000000, RestoreDefaults = 0x08000000, FirstButton = Ok, // internal LastButton = RestoreDefaults, // internal YesAll = YesToAll, // obsolete NoAll = NoToAll, // obsolete Default = 0x00000100, // obsolete Escape = 0x00000200, // obsolete FlagMask = 0x00000300, // obsolete ButtonMask = ~FlagMask // obsolete };