Do You Like C or C++ More ? #programming #coding #lowcode

Do You Like C or C++ More ? #programming #coding #lowcode

Low Level

1 год назад

1,359,595 Просмотров

Ссылки и html тэги не поддерживаются


Комментарии:

@Niepokonany_Hacking
@Niepokonany_Hacking - 01.11.2024 23:11

If that is hard to read... then try Modding And Hacking :-)

Ответить
@tony-does-stuff
@tony-does-stuff - 03.11.2024 21:24

As someone who knows no code: I know some of those words

Ответить
@xjjfjfdjdh9993bbhhhh5hjjjjd
@xjjfjfdjdh9993bbhhhh5hjjjjd - 04.11.2024 02:47

C++, because it is C with extra syntax. You can code C in a C++ file. OOP is much easier to maintain in C++. I don't do the extra overloading stuff, but dot syntax is awesome for class methods. However, I know only ANSI C, so later versions of C might have solved these problems. Generics seem safer and less repetative than macros or copy-pasting, but I haven't used them. I also haven't coded professionally in C++, only C.

But I want to learn Rust more to leave all this other stuff behind. ;)

Ответить
@KvapuJanjalia
@KvapuJanjalia - 04.11.2024 10:25

When I found out that you can overload a dot operator in C++, I immediately stepped away from C++.

Ответить
@ahmadashbat
@ahmadashbat - 04.11.2024 20:37

"Don't recommend this channel"

Ответить
@DangerousPurplePlant-10009y
@DangerousPurplePlant-10009y - 05.11.2024 01:55

Womp womp skill issue

Ответить
@Machinely
@Machinely - 05.11.2024 14:26

The idea of higher level languages is to abstract all that detail away, and make it easier, safer and more efficient to write code.

Ответить
@ILLUMINATED-1
@ILLUMINATED-1 - 07.11.2024 01:02

You kind of need a fully featured modern ide with autocomplete and display over hover to really use C++, it sounds like, then.

Which is precisely why it’s fallen face flat on linux. No such thing. CLion is close, but realistically C++ is most used on OSes with these sorts of editors, e.x. VS, VSCode, Xcode. vsc is on linux now so it could be languages that can only be rapidly used with the use of tools may expand. My theory anyway.

Using C++ in anything but visual studio for me is a nightmare.

Ответить
@user4gent416
@user4gent416 - 07.11.2024 01:43

100% right. I also prefer C over C++. Rust makes some sense tho

Ответить
@q2yogurt
@q2yogurt - 08.11.2024 15:56

As someone who writes C++ comercially... yeah I guess I agree

Ответить
@FiveNineO
@FiveNineO - 09.11.2024 22:55

C++ is too big for my tiny brain 😅

Ответить
@maaikevreugdemaker9210
@maaikevreugdemaker9210 - 11.11.2024 00:27

Everytime with these shorts I am like wtf am i looking at xD

Ответить
@vectoralphaSec
@vectoralphaSec - 11.11.2024 09:21

People who prefer C over C++ is ALWAYS a skill issue.

Ответить
@abhinavbansal9396
@abhinavbansal9396 - 12.11.2024 16:37

C++ is just c with oops

Ответить
@yrds96
@yrds96 - 12.11.2024 23:25

This is a point of every function/abstraction. Operator overloading is just a syntax sugar. You don't have surprises while you using it on primitives but you know for sure that something you don't know is happening using it with between classes and objects.

Ответить
@rursus8354
@rursus8354 - 13.11.2024 06:34

Nah. I hate both of them. C because I always have to invent the wheel again, C++ because of what you just said: it is so heavily patched in order to increase the productivity, that it is kind of unpredictable. I prefer D, because I want to keep the full control, yet having access to higher level abstractions.

Ответить
@arthur_p_dent4282
@arthur_p_dent4282 - 15.11.2024 03:10

I’m fairly new, but I agree

Ответить
@ardwetha
@ardwetha - 16.11.2024 14:10

Also you need like a ducking ton of different constructors which don't make sense and whatever.

Ответить
@nasccped
@nasccped - 19.11.2024 18:37

What's your nvim config?

Ответить
@jacobwerner8533
@jacobwerner8533 - 21.11.2024 02:01

i dont like c++. theres a lot of underlying stuff going on and its hard to pin point exactly when its getting executed. i end up wasting a lot of time trying to set up classes instead of just using structures like c. not to mention all the possible options and libraries to pick from. personally i do better with less options like c. c++ is even harder to read when using newer standards like c++17 and 20. although i do like the std::string and std::vector classes.

Ответить
@michaelsegel8758
@michaelsegel8758 - 21.11.2024 17:39

This just hit my stream.
SPOT ON!!!

Remember that early on.. C++ was a pre-processor that converted C++ to C. (It may still be)

The reason I hated C++ was due to having to fix other people's code. Really bad code.

Ответить
@tomasruzicka9835
@tomasruzicka9835 - 21.11.2024 18:47

That totally is a skill issue. But a skill issue I do expect to see in people. And sure you can argue that seeing in C++ requires you knowing the rest of the codebase (which I agree is bad design) but it is not that often you actually need to know how exactly stuff happens, that's why it's called an abstraction. The issue I actually have with c++ is that those abstractions can be written in such an ugly way, you don't even know WHAT it's supposed to do, let alone how (without recursively scanning through the whole codebase).

Ответить
@hareTom
@hareTom - 22.11.2024 06:20

Skill issues

Ответить
@moralebianco
@moralebianco - 22.11.2024 12:43

That's true if macros didn't exist

Ответить
@user-iq2xd5fq8n
@user-iq2xd5fq8n - 22.11.2024 19:45

he is talking facts

Ответить
@bondjovi4595
@bondjovi4595 - 23.11.2024 12:43

I enjoy the disorganization of normal C. Classes are pointless, misleading, and confusing.

Ответить
@jamespong6588
@jamespong6588 - 25.11.2024 00:26

I agree, this is why I program c style c++,
bare minimum c++, and I compile c++98

Ответить
@ahmetedizbozkaya7580
@ahmetedizbozkaya7580 - 26.11.2024 05:16

Because when people are writing code they don't consider that another person is gonna read it

Ответить
@-CmonMeow
@-CmonMeow - 26.11.2024 06:33

class inheritance should have limits, or some type of tree view

Ответить
@cybernit3
@cybernit3 - 26.11.2024 16:48

Lowlevel you are bang on correct, 100% agree with you. But some C++ code can minimize all those extra C++ features like operator overloading, and just focus on Object oriented features only. Now they have RUST and makes it worse to understand every single line of code.

Ответить
@Link-channel
@Link-channel - 28.11.2024 04:37

It's not you. It sucks.
BUT others are worse.

Ответить
@mhalton
@mhalton - 28.11.2024 07:15

Only C is worthy of applause!

Ответить
@RineYan-w8i
@RineYan-w8i - 28.11.2024 18:13

I like C++ because of 🤑🤑🤑🤑🤑

Ответить
@VapuR8
@VapuR8 - 30.11.2024 21:24

yeah, C++ is a stupid language for lazy programmers, who dont want to bother to optimize their code and C++ produces buggy vulnerable code on the spot every time with almost every code string. But its very convenient and makes development faster as you can go for high level features and tricks with it.

Ответить
@RomanvonLandeskrone
@RomanvonLandeskrone - 01.12.2024 18:44

I agree 110%. Same reason I hate Java. Or Python. Too many stupidly written libraries. Bloat upon software bloat.

Ответить
@RomanvonLandeskrone
@RomanvonLandeskrone - 01.12.2024 18:46

A language doesn't behave. People's behavior is affected by a language.

Ответить
@andrew38617
@andrew38617 - 04.12.2024 23:29

Studying C++ requires a totally different approach and energy from C.

C++ is a beast of a language. You really need to study an awful lot and invest tons and tons and tons of hours in different books. You need to memorize and make experience asap. It's a marvelous adventure for free spirits.

Once you really know C++ (and it takes years of diligent study) you know them all and there's no language that you can't learn in days..

Ответить
@STBrian159
@STBrian159 - 05.12.2024 03:52

For now I like it because I can write in C but if there is something that can save me time with C++ I use it.

Ответить
@neerajprataphazarika1390
@neerajprataphazarika1390 - 05.12.2024 09:58

U need to know C if u want to reverse engineer

Ответить
@Johanthegnarler
@Johanthegnarler - 06.12.2024 01:49

Love C, wrote tons of C++. When im going high level, C++ is too painful and often too slow to write in a huge project. When im going low level and portable, C++ is too bloated and convoluted.

Ответить
@rhoynarr
@rhoynarr - 06.12.2024 02:19

This comes out really badly, the main reason for using C++ is to have basic features that are missing in C in a robust standard implementation. Even if you'll implement everything by yourself in C, there'll be encapsulation that hides what every function is actually doing.

Ответить
@foadsf
@foadsf - 06.12.2024 21:46

C99 is almost good enough. Everything after that seems bloated.

Ответить
@ryn__bsd
@ryn__bsd - 07.12.2024 17:27

C++features 🫠

Ответить
@vladyslavkryvoruchko
@vladyslavkryvoruchko - 09.12.2024 09:04

if c had namespaces we would have flying cars

Ответить
@King-sd5vg
@King-sd5vg - 10.12.2024 02:42

Don’t worry guys, in order for what he says to affect you you’d need 10 years in coding 😤🙏

Ответить
@thekrixhna
@thekrixhna - 10.12.2024 12:10

How can I learn this much?!

Ответить
@snsisback9669
@snsisback9669 - 10.12.2024 22:17

bro is gonna have a stroke once he sees python code

Ответить
@theoemanuelsson7465
@theoemanuelsson7465 - 12.12.2024 02:13

bro I hate them both equally

Ответить
@viilth576
@viilth576 - 13.12.2024 01:10

me, a 3d artist looking at the comments having no fucking clue what y’all are yapping about 👁️👁️ i’ll stick to trying to learn python

Ответить
@AhmedAli-pc4ek
@AhmedAli-pc4ek - 14.12.2024 00:55

I wonder how he thinks about python

Ответить

미소디자인 케이알파 동영상