Day 44 of Learn C++ from ChatGPT - I'm dead on many levels

แชร์
ฝัง
  • เผยแพร่เมื่อ 19 พ.ย. 2024

ความคิดเห็น • 25

  • @dav1dtv847
    @dav1dtv847 4 หลายเดือนก่อน +1

    Every programmer nightmare I'm working in c and Python and I love it when someone types in C++.It's hilarious😂 ps.Keep coding my man

    • @TheRealZitroX
      @TheRealZitroX 4 หลายเดือนก่อน

      You’ve seen what?
      This is just pain. Like python codes that run fucking slow cause noone learns about performance and code structure

  • @smollpeps
    @smollpeps 4 หลายเดือนก่อน

    Also, I'm learning C++ this summer because I have no summer vacation plans. Let's keep coding and get good at it💪

    • @SandyClamberg
      @SandyClamberg 4 หลายเดือนก่อน

      Take it all the way to binary 🤌

  • @nerdydrow
    @nerdydrow 4 หลายเดือนก่อน

    define the Student class (the implantation) or any class that is giving you this problem BEFORE using it in

  • @whiteingale
    @whiteingale 4 หลายเดือนก่อน

    You pray to help.

  • @PublicFlicks-mc9mr
    @PublicFlicks-mc9mr 4 หลายเดือนก่อน

    The point of not plagarizing is that you'd learn to solve some of this by yourself :) Some of the stuff gpt generates doesn't work and there's more basic atomics you can use (such as passing vector instead of using a smart pointer).

  • @vonPBDesign
    @vonPBDesign 4 หลายเดือนก่อน

    Btw, you dont have to compile the code all the time. The problems tab shows the errors from the lsp. It will update when you change the code :)

  • @Smurdy1
    @Smurdy1 4 หลายเดือนก่อน +2

    Yo I can help you debug if you share the code. I'm pretty good at C++.

    • @TheRealZitroX
      @TheRealZitroX 4 หลายเดือนก่อน

      This is just one classfile.
      What should be done here?

  • @1blkvinci
    @1blkvinci 4 หลายเดือนก่อน +4

    u are not learning (good) c++ fron chatgpt im sorry to tell you😭

    • @TheRealZitroX
      @TheRealZitroX 4 หลายเดือนก่อน

      My eyes started burning from looking at this

  • @TheRealZitroX
    @TheRealZitroX 4 หลายเดือนก่อน

    This is just pain to watch.
    Why do you keep a ton of classes in one file?
    Why don’t you just look up the „incomplete Type error“ and find out, that you forward declare and use the class at the same Time.

  • @notaredBox
    @notaredBox 4 หลายเดือนก่อน

    You dont need to have a vector inside a smart pointer, since vector is a heap allocated container it already is (technically) a pointer also dont use auto when passing arguments to functions.

    • @TheRealZitroX
      @TheRealZitroX 4 หลายเดือนก่อน

      You missed the point of shared pointer.
      And no. A vector with „std::vector v;“ will be on the stack and elements get allocated on the heap.

    • @TheRealZitroX
      @TheRealZitroX 4 หลายเดือนก่อน

      „ int main() {
      vector bar;
      Type foo;
      bar.push_back(&foo);
      }“
      In this case it is mixed. Heap points to stack variables.

    • @TheRealZitroX
      @TheRealZitroX 4 หลายเดือนก่อน

      Note that the functions lifetime ends with returning thus killing the Type foo. The vector will not have access after it, but in this case the vector is dead as well.

    • @notaredBox
      @notaredBox 4 หลายเดือนก่อน +1

      @TheRealZitroX Ok yes, this is what I meant, I just worded it poorly, the chunk of memory the vector holds is on the heap, unless you use a stack allocated allocator 😆

  • @sercascade
    @sercascade 4 หลายเดือนก่อน +1

    dont!!! chatgpt doesnt always teach it the right way!!! use youtube for better practices please!!!

    • @TheRealZitroX
      @TheRealZitroX 4 หลายเดือนก่อน

      I’ve seen a lot of shit posts that teach crap p

  • @Alx-je7oj
    @Alx-je7oj 4 หลายเดือนก่อน

    You should not learn from AI lmao, your learning bad stuff.