this post was submitted on 14 Mar 2024
1265 points (98.5% liked)

Programmer Humor

18255 readers
479 users here now

Welcome to Programmer Humor!

This is a place where you can post jokes, memes, humor, etc. related to programming!

For sharing awful code theres also Programming Horror.

Rules

founded 1 year ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 16 points 3 months ago (2 children)

C++: Nuh, uh ...

template <typename T>
concept Crackable = requires(T obj) {
    { obj.crack() };
};

auto crack(Crackable auto& nut) {
    nut.crack();
}
[–] [email protected] 2 points 3 months ago* (last edited 3 months ago) (1 children)

This is dangerous. The object might not have the crack() method, and this bloats the compiled size by a lot if you use it with different types. There's also no reason I can see to use concepts here. The saner way would probably be to use inheritance and objects to mimic Java interfaces.

[–] [email protected] 4 points 3 months ago

This is dangerous

Well, they say you do have to be over 18 to use Concepts