ENUMS in every programming language (All you need to know)

  Рет қаралды 28,985

CodeBeauty

CodeBeauty

Күн бұрын

Пікірлер: 191
@CodeBeauty
@CodeBeauty 2 жыл бұрын
📚 Learn how to solve problems and build projects with these FREE E-Books ⬇ C++ Lambdas e-book - free download here: bit.ly/freeCppE-Book Entire Object-Pascal step-by-step guide - free download here: bit.ly/FreeObjectPascalEbook 🚀📈💻🔥 My Practical Programming Course: www.codebeautyacademy.com/ Experience the power of practical learning, gain career-ready skills, and start building real applications! This is a step-by-step course designed to take you from beginner to expert in no time! 💰 Here is a coupon to save 10% on your first payment (CODEBEAUTY_YT10). Use it quickly, because it will be available for a limited time. Code from this video: #include using namespace std; enum EyeColor { Brown=1, Blue=22, Green=3, Gray=4, Heterochromia, Other }; void getEyeColorDetails(EyeColor myEyeColor) { switch (myEyeColor) { case Brown: cout
@milkamilkica1935
@milkamilkica1935 2 жыл бұрын
Yess, was waiting for this. Your videos are great!
@CodeBeauty
@CodeBeauty 2 жыл бұрын
enjoy! 🥰🥰
@dundyd3612
@dundyd3612 2 жыл бұрын
I love your videos Saldina, much better than any other I could find
@CodeBeauty
@CodeBeauty 2 жыл бұрын
🥰🥰
@ChrisVideosGreek
@ChrisVideosGreek 2 жыл бұрын
This video is gonna be a great one!
@omleen3187
@omleen3187 Жыл бұрын
Your accent is so understandable and easy to follow. Thanks a million ❤
@sunbreeze7354
@sunbreeze7354 2 жыл бұрын
Great job as always Saldina!
@CodeBeauty
@CodeBeauty 2 жыл бұрын
thank you 💕
@richardchinomona4676
@richardchinomona4676 2 жыл бұрын
You are appreciated. I don't think I would be able to passing my C++ module without you.
@alec_almartson
@alec_almartson 2 жыл бұрын
Thank you for making this video, I really appreciate it. 💯👍🏻
@ammaarsaadat8045
@ammaarsaadat8045 2 жыл бұрын
Amazing video. Didn’t get this concept when explained in college. You made it so much easier to understand. EyeColor myEyeColor = (EyeColor) 1; If (EyeColor == 1) {likeVideo();} Else {likeVideo();}
@Aliqasim2131
@Aliqasim2131 2 жыл бұрын
Please make full course on Data Structure and algorithm (DSA)
@WDavidCastaneda
@WDavidCastaneda 2 жыл бұрын
Thank you CodeBeauty! ❤️👍
@CodeBeauty
@CodeBeauty 2 жыл бұрын
🤞❤️
@SergiuMuntean-q5n
@SergiuMuntean-q5n 9 ай бұрын
This video is a masterpiece! Congratulations, Saldina, it helped me a lot!
@CodeBeauty
@CodeBeauty 9 ай бұрын
I'm happy to hear that 🥰
@gollygobih6527
@gollygobih6527 2 жыл бұрын
I'm your biggest fan bcz your videos changed my life. I was depressed and couldn't see anything positive and interesting to do with my life until I started watching your videos. now I feel that I'm making progress every day and cant wait for every new video that you publish. love you SALDINA 🌹🌹🌹
@CodeBeauty
@CodeBeauty 2 жыл бұрын
I'm so happy for you and I'm sure that you'll find happiness and purpose in building great apps that will serve people and our planet for a long time to come! ❤️❤️
@exinangai2216
@exinangai2216 2 жыл бұрын
wow, I never thought of prog tut video can help ppl with depression to engage in new activities again. Keep going, pal 😁. If programming & exploring how computers work is your thing, it is a refreshing start to get a taste of "actually living at present" (instead of burying and helplessly struggling with negative thoughts every sec). You may one day become a great programmer among the existing ones. 👍🏻Good Luck & Best wishes to you & your journey of coding. 👍
@phoebewell3653
@phoebewell3653 2 жыл бұрын
I was in a similar situation and mine started with a breakup. I also started learning programming and going to the gym because I WANT A BETTER FUTURE for myself. I feel so much better now than just a few months ago. Now I have a purpose and goals for every day in my life. Thank you Saldina, you have a gift for this, don't ever stop, your videos will change many lives ❤️ ❤️ (ps. I also follow you on IG and love your gym stories)
@Maxthebomb_13
@Maxthebomb_13 3 ай бұрын
the only video i found that actually helped me understand! tysm ♥
@malikmuhammadarslan9993
@malikmuhammadarslan9993 2 жыл бұрын
you are really good in teaching
@CodeBeauty
@CodeBeauty 2 жыл бұрын
🙏💙
@savansanghavi7465
@savansanghavi7465 2 жыл бұрын
Your videos are better than whatever is available on KZbin. Thanks for sharing ur knowledge. Please make videos about rtti
@-_-5070
@-_-5070 2 жыл бұрын
Thank you Saldina♥️ This was really helpful, and it's 2 btw😁
@peterlaidlaw8655
@peterlaidlaw8655 2 жыл бұрын
Hi .. I'm a self taught programmer for embedded hardware .. Feeling playful; my eye colour changes with my mood - 12 today :). I came here to refresh knowledge of Static variables. BYW .. my two fav. teachers are you and David Malan (CS50) .. Thanks much.
@krystianratajczyk6751
@krystianratajczyk6751 Жыл бұрын
You tutorials are vrey helpful, I have learnt from them a lot, Thanks!
@CodeBeauty
@CodeBeauty Жыл бұрын
🥰
@moodyshah007
@moodyshah007 Жыл бұрын
Thankyou so much! I love your videos, you explain everything so clearly and in a simple fashion. I have learnt so much from you! Thankyou!
@akosyt4540
@akosyt4540 2 жыл бұрын
enum EyeColor{ Brown=0, Blue, Grey, Green, Heterochromia}; int UserIput; EyeColor eyecolor; do { cout > UserIput; } while (UserIput < 0 || UserIput>4); eyecolor = EyeColor( UserIput); switch (eyecolor) { case EyeColor::Brown:cout
@dishant5157
@dishant5157 2 жыл бұрын
Always love your teaching styles ❤️❤️❤️❤️❤️❤️❤️
@GiorgiBastos
@GiorgiBastos 2 жыл бұрын
After watching this video I finally could understand the use of enums. Thanks for sharing your knowledge. Regards from Brazil.
@jaspreetahir871
@jaspreetahir871 Жыл бұрын
tysm for ur videos regarding programming it's helping me and ofc other's alot i'm enjoying alot :)
@l.p.1967
@l.p.1967 2 жыл бұрын
Thank you for making this video, btw, the question that you asked is 2 😁♥
@mosopefoluwaadebawojo3543
@mosopefoluwaadebawojo3543 2 жыл бұрын
I really enjoy and learn a lot from your videos. Thank you Code beauty.
@dandon.3667
@dandon.3667 11 ай бұрын
You make me understand every concept in c++ , I love you so much I'm so grateful🥰🥰😍😍😍
@mehdipira4933
@mehdipira4933 2 жыл бұрын
Awesome, thanks.
@4theloveoflife431
@4theloveoflife431 2 жыл бұрын
Absolutely great! Your videos are amazing. Enums still give me lots of questionnarks, but you deleted some of them! Great Videos! Keep it up! :)
@habeeblaimusa4466
@habeeblaimusa4466 2 жыл бұрын
I always gain sth. Anytime I watch your video. Thank you Saldina💯💯
@CodeBeauty
@CodeBeauty 2 жыл бұрын
getting smarter every day 💪❤️
@neilcampbell6026
@neilcampbell6026 2 жыл бұрын
Always good content and presentation style. I always learn things from your videos. You've asked about a complete SQL class/series a couple times--yes from me.
@Youssef0021-7
@Youssef0021-7 18 күн бұрын
great video salvina! thank u
@douglascaskey7302
@douglascaskey7302 3 ай бұрын
Because I usually use enum class (C++11) to give the enum scope... My eye color is EyeColor::Blue. This is useful where you might want to also use FabricColor::Blue and PaintColor::Blue. Also to expand on the value assignment... since the compiler will automatically increment the value of the 1st enum item by 1 you can do things like: enum class DialogPosition : signed char {Offset = -7, BottomRight, BottomLeft, Center, TopRight, TopLeft};
@diweiye8420
@diweiye8420 Жыл бұрын
1, your video has always been so inspiring !
@rino19ny
@rino19ny 2 жыл бұрын
hello. please make a tutorial for C++ range based for loop and C++ vectors.
@tullyal
@tullyal 2 жыл бұрын
Great video - easily digested over lunch! :-)
@CodeBeauty
@CodeBeauty 2 жыл бұрын
you can watch this one without even typing the code and still understand how it all works 😏😁❤️
@tuazulyrojoeljean
@tuazulyrojoeljean Жыл бұрын
0 0 Great video! Thank you very much, Saldina! :)
@pimpmetapod7906
@pimpmetapod7906 2 жыл бұрын
My eye color is 5 which is mix of 1 & 2 & 3
@CodeBeauty
@CodeBeauty 2 жыл бұрын
wish I was that cool 👀🥰
@sanaeareina5371
@sanaeareina5371 2 ай бұрын
thank uu so much is very usefull ❤❤
@yazidfarid7788
@yazidfarid7788 Ай бұрын
Thank you ❤
@sunshineVibes2024
@sunshineVibes2024 Жыл бұрын
Hello dear. first answer 0 second answer 1 I have a request for you, please do videos in Qt for beginners. Your explanation is more easy and understandable to me. Thanks in advance
@sattorjabborov2728
@sattorjabborov2728 2 жыл бұрын
I was trying to understand why we need enums in swift language, and I finally understood it from c++😅❤️❤️
@CodeBeauty
@CodeBeauty 2 жыл бұрын
for the same reason
@tvrrp
@tvrrp 2 жыл бұрын
Yep. And enums in Swift are more powerful. For example you can write custom initialisation for enum that take struct as a parameter. And you can iterate throw those structs and assign enum case to itself
@moexii6308
@moexii6308 Жыл бұрын
You're awesome girl!!
@admoonhermiz1
@admoonhermiz1 2 жыл бұрын
thank you!!!
@khaledvevo603
@khaledvevo603 10 ай бұрын
Thank You So Much
@CSHuang-uw1lx
@CSHuang-uw1lx 10 ай бұрын
well explaination, but I have a question, which is EyeColor is an Enum type which contains several intergers. But when declaring EyeColor myEyeColor, the myEyeColor is only a member of the EyeColor? how to realize the data structure of enum and its members and values?
@lmnefg121
@lmnefg121 2 жыл бұрын
I just love this one~!
@Timo-Epis
@Timo-Epis Жыл бұрын
isn't "enum class" more appropiate to use?
@sewingmachinesindetail
@sewingmachinesindetail 9 ай бұрын
Thank you for nice video. In your code I saw myEyeColor++ in a for statement. I have tried to make a statement like myEyeColor++; in code, and then the compiler responds, that it is not allowed, and it surprised me. Should a C++ compiler allow this statement? Could it be allowed in C and not in C++? Is your compiler here C or C++?
@blacksky9571
@blacksky9571 2 жыл бұрын
I cannot find the translation
@arjunpoudel6715
@arjunpoudel6715 Жыл бұрын
can you make video for Qt for mac os
@kwenjieeohrengsoc987
@kwenjieeohrengsoc987 2 жыл бұрын
Thanks
@deneristargerian6755
@deneristargerian6755 2 жыл бұрын
mine is 1 😁😁
@ROYALNIL_SITE
@ROYALNIL_SITE 3 ай бұрын
thanks great master .
@CodeBeauty
@CodeBeauty 3 ай бұрын
You are welcome :)
@barimahyaw5446
@barimahyaw5446 2 жыл бұрын
Can saldina create a platform like discord where we can ask questions
@CodeBeauty
@CodeBeauty 2 жыл бұрын
yess, that will be soon 💜 🙈
@barimahyaw5446
@barimahyaw5446 2 жыл бұрын
Okay you've really helped me alot and I'm looking forward to it
@khan-f5f
@khan-f5f 2 жыл бұрын
Hello my question is In this video enums as function parameter you just create a function of geteyeclordetail and define switch cases under it it does't related to enums if we write this function without Enum it will work or not
@emilyve
@emilyve 11 ай бұрын
I am 1, i love your character, always watch your videos complete, even the 2,5hour videos, love it
@midenno9987
@midenno9987 Жыл бұрын
Hallo, it is 2+3. Thanks for the effort .
@cac2244
@cac2244 2 жыл бұрын
Finally an easy to understand explanation... BTW MyEyeColor == 1;
@CodeBeauty
@CodeBeauty 2 жыл бұрын
👀❤️😼
@AndreyAntsupov
@AndreyAntsupov Жыл бұрын
Very good video. ( not only that, but others too ) My english is 75% equil google translate, but I'll try to get my point across ) I would like to see a mention that the enum is a global and we cannot create two enums with the same values: enum EyeColor {Blue, Green, Grey}; enum ClothColor {Blue, Red, Green}; We will get an error stating that two identical values ​​are declared ( or something similar ). But at the same time there is an enum class that solves this problem. I would also like to know what and where is more often used on large projects ? ( enum or enum class ) I also heard somewhere that it is correct to write enum values like this: enum EyeColor {BLUE, RED, YELLOW}; because these are constants, but I still don’t understand if someone is still doing this or is already “outdated” ? P.s. if (Brown == 1) { MyEyeColor = 6; } (Gray + Green)
@manoharsagunthalla9215
@manoharsagunthalla9215 2 жыл бұрын
Dear Saldana is it possible to define any number of enum and use it? For example say Group - 1 { English, Tamil, Literature etc}, Group - 2 {Math, Physics,Chemistry etc}
@supportitservices6349
@supportitservices6349 2 жыл бұрын
Thank you beuty
@lachichinqkocev6151
@lachichinqkocev6151 2 жыл бұрын
Hi Saldina I em a student and I studying CPP and I em a big fan of your videos can you pls. make video on CPP references pls.
@menaadel-j9e
@menaadel-j9e Жыл бұрын
i love your explanation , iam from Egypt😍😜
@superboy3625
@superboy3625 2 жыл бұрын
Hello... pls post videos on c++ stl. Standard template library.. Your videos are great ..🥳
@colins2
@colins2 2 жыл бұрын
Quite a lot of blue-eyed programmers - me too! Why didn't you mention a default value in the switch statements? I always thought that you should, where there could be ambiguity. Great video though👍
@СтоянТодоров-л9э
@СтоянТодоров-л9э Жыл бұрын
EyeColor myEycolor = (EyeColor) 6; Although I'm not sure if cast will work with Rvalue.
@antonnovo695
@antonnovo695 2 жыл бұрын
Hi! You should do a java course. I'd devour it.
@neepunpatil5201
@neepunpatil5201 2 жыл бұрын
Well we are close to 200k😄😄
@CodeBeauty
@CodeBeauty 2 жыл бұрын
Soo close 🥺 ❤️
@us07251
@us07251 2 жыл бұрын
ERROR: My eye color is black :(
@Youssef0021-7
@Youssef0021-7 18 күн бұрын
7:43 my eye color is 0 : ) thanks for the nice video!
@gregorykinney8504
@gregorykinney8504 Жыл бұрын
Very Helpful. 2
@xthanatos89
@xthanatos89 Жыл бұрын
take my follow also 1 is mine!
@ScaerieTale
@ScaerieTale 10 ай бұрын
5 (2 && 1)
@shukurullomeliboyev2004
@shukurullomeliboyev2004 Жыл бұрын
my eyes are blue -gray😁.
@ethangold4900
@ethangold4900 2 жыл бұрын
As a computer science student, I realized the importance of enums when I revisited one of my projects after months
@rcookman
@rcookman 2 жыл бұрын
I have brown eyes too. Lovely brown eyes like yours :) Also enums are great thanks for sharing.
@CodeBeauty
@CodeBeauty 2 жыл бұрын
👁️ 👁️ 🤎
@ornessarhithfaeron3576
@ornessarhithfaeron3576 2 жыл бұрын
👁️👄👁️
@kenopedia7023
@kenopedia7023 Жыл бұрын
I learned a lot of for your videos. Hope I will pass the exams😂😂
@CodeBeauty
@CodeBeauty Жыл бұрын
Good luck 🤞🤞🤗
@kenopedia7023
@kenopedia7023 Жыл бұрын
@@CodeBeauty I have a request. Please explain checksum c++ .
@kenopedia7023
@kenopedia7023 Жыл бұрын
@@CodeBeauty And also the different function of strings function.
@Selinzik_CEO
@Selinzik_CEO 7 ай бұрын
5...
@mahmoudhamdy4252
@mahmoudhamdy4252 Жыл бұрын
My Eye color is 1 😃 thanks for the video
@osamahukel8858
@osamahukel8858 2 жыл бұрын
I am really so grateful for Allah then you . Because you really help me in c++ . A lot.
@AbleBrawa
@AbleBrawa 3 ай бұрын
Functions✅️ Enumeration ✅️ Union ☑️🙏🙏 Please, one video about Union
@CodeBeauty
@CodeBeauty 3 ай бұрын
thanks for the idea :)
@MostorAstrakan
@MostorAstrakan 2 жыл бұрын
4. I've never found much use for enums, to be honest. Your example is for user interaction, but a user is never going to look up their eye color in a table and then enter a number. (It's an example, so fine). I think the main use for an enum is to make numerical codes more readable for the Programmer. For instance if you have a list of increasingly important messages, you could do: enum Severity { ignore=0, debug, info, warning, error, panic, disaster }; And then you can do things like: if(errorLevel >= error) { cout
@davidmorris2848
@davidmorris2848 Жыл бұрын
In the video she says that enums are for the programmer and future programmers who look at the code. I don't recall her stating that they were for the user.
@TheHipsterGamer
@TheHipsterGamer Жыл бұрын
as of 8:05 My eye color is ... Eyecolor myEyeColor = Other; std::cout
@DEXTERLOSKI
@DEXTERLOSKI 2 жыл бұрын
hello can you help me Im trying to make a code that will decode numbers and this is what I have so far im getting errors and im not sure why #include using namespace std; int main() { int 1, 2, 3, 4, 5,; cout > 1 >> 2 >> 3 >> 4 >> 5; cout
@Mrclean101
@Mrclean101 Жыл бұрын
int userInput; do { coutuserInput; }while (userInput6);
@Timo-Epis
@Timo-Epis Жыл бұрын
Everyone seems to have their own way formating enumerators lol
@darkplayer4371
@darkplayer4371 2 жыл бұрын
Can you please make videos on microcontroller programming For beginners If yes please reply so we will wait otherwise you understand 😃😊
@chiyang3749
@chiyang3749 4 ай бұрын
you have so many subscribers, how did you get the time to read the comments posted by them? i mean you probably get thousands of comments every day
@CodeBeauty
@CodeBeauty 4 ай бұрын
i do, but this is my community, these are the people that are learning from my videos so i'm trying as much as possible to make time for them :)
@heltondeoliveirarodrigues5726
@heltondeoliveirarodrigues5726 9 ай бұрын
EyeColor=1
@johnromero1537
@johnromero1537 2 жыл бұрын
My eye color is 1. By show of hands or thumbs up, who else likes the way our hostess says "parameter"?
@__hannibaalbarca__
@__hannibaalbarca__ 2 жыл бұрын
Did you know i never used; or very rare; Instead I used const binary arrray
@MsSemki
@MsSemki 8 ай бұрын
4
@CodeBeauty
@CodeBeauty 8 ай бұрын
😍
@jeetenzhurlollz8387
@jeetenzhurlollz8387 9 ай бұрын
she made unreal easy
@samyaza5752
@samyaza5752 2 жыл бұрын
3
@CodeBeauty
@CodeBeauty 2 жыл бұрын
👀❤️🥰
@Austin-pw2ud
@Austin-pw2ud 2 жыл бұрын
Gooodddddd,,,,,how is she sooo cute and Smart at the same time!!!!
@sulfur32066
@sulfur32066 2 жыл бұрын
2
@CodeBeauty
@CodeBeauty 2 жыл бұрын
🤞😁 ❤️
@tuliosilva6720
@tuliosilva6720 Жыл бұрын
My eye color: 1 ^^
@marichka5992
@marichka5992 Жыл бұрын
5
@likami6830
@likami6830 2 жыл бұрын
My eye color is 2 :)))
@CodeBeauty
@CodeBeauty 2 жыл бұрын
😁❤️
What are header files in C++ ( PROGRAMMING TUTORIAL for beginners)
23:54
Friend functions and classes in C++ (Programming for beginners)
18:18
To Brawl AND BEYOND!
00:51
Brawl Stars
Рет қаралды 17 МЛН
you will never ask about pointers again after watching this video
8:03
C++ Super Optimization: 1000X Faster
15:33
Dave's Garage
Рет қаралды 332 М.
Exception handling in C++ (How to handle errors in your program?)
24:46
ZIG | Ep1 | Introduction
20:18
Code Guild
Рет қаралды 16 М.
31 nooby C++ habits you need to ditch
16:18
mCoding
Рет қаралды 852 М.
Why You Shouldn't Nest Your Code
8:30
CodeAesthetic
Рет қаралды 2,8 МЛН
C++ Tutorial:  enumerated data types [enums]
16:38
Professor Hank Stalica
Рет қаралды 2,4 М.
why do void* pointers even exist?
8:17
Low Level
Рет қаралды 402 М.