CppCon 2018: Walter E. Brown “C++ Function Templates: How Do They Really Work?”

Поділитися
Вставка
  • Опубліковано 26 сер 2024

КОМЕНТАРІ • 25

  • @rdwells
    @rdwells 5 років тому +6

    When I previewed this and saw it was slides with lots of text, I thought "Oh, no, another talk where someone is just going to read slides to us", and expected to move on to something else after about 5 minutes. I'm glad I didn't. If you watch nothing else, watch the sections that cover slides 20 through 22. I've been using C++ since the mid 90s, and I've never seen what he talks about there presented better than he does.

  • @mwont
    @mwont 5 років тому +19

    Very clear and informative talk. Thank you.

  • @anhkhoa91280
    @anhkhoa91280 4 роки тому +2

    You saved my day trying to understand Explicit Specialisation. Much respect to you!!!

  • @KarelDonk
    @KarelDonk 5 років тому +13

    Coffee, fruit cake, and a walter brown video.

  • @Radioguy00
    @Radioguy00 5 років тому +1

    As usual, yet another very clear presentation from Walter

  • @Bolpat
    @Bolpat Рік тому +1

    44:22 I’m not saying everything about C++ is perfectly named, but STL stands for _standard template library,_ so no surprise there’s a lot of templates in it.

  • @Bolpat
    @Bolpat Рік тому

    49:30 - 51:30 The abbreviated function templates and the constraints - including the adjective syntax - are in C++20. ❤

  • @jonathanwatmough
    @jonathanwatmough 5 років тому +1

    An excellent talk! I learned so much from this. Thanks Walter!

  • @kronek9371
    @kronek9371 2 роки тому +1

    Excellent talk. One question from me, could anyone explain what "name" refer to in "Specialization of a template does not introduce a name"?

  • @Bolpat
    @Bolpat Рік тому

    48:50 It does not seem like std::swap finds another swap in C++20/23, but std::range::swap does. So, use the latter or do the 2-step dance.

  • @meepk633
    @meepk633 2 роки тому

    I want to have,
    T someFunction (T t) { }
    become
    std::string someFunction(std::string t) { }
    when called with a string literal like
    someFunction("somestring")
    How would I do that? Type traits? Overloaded proxy w/ explicit cast? What's the idiomatic way?

  • @jjvh
    @jjvh 5 років тому

    slide 22:
    Is it possible to create specialization (b) of (a) after the declaration of (c) or will it always become specialization (d) ?

    • @valbogda5512
      @valbogda5512 5 років тому

      Someone asks this question at the end. I'd say try it.

    • @misana77
      @misana77 4 роки тому

      Yes: godbolt.org/z/5hrhh8

    • @Bolpat
      @Bolpat Рік тому

      After
      template void f(T) { .. } // A
      template void f(T*) { .. } // B
      you can specialize both by explicitly providing template arguments. If you want an explicit specialization that takes int*:
      template void f(int*) { .. } // special A, explicit type arg required
      template void f(int*) { .. } // special B, version with explicit type arg
      template void f(int*) { .. } // spacial B, version without explicit type arg

  • @alexo989
    @alexo989 2 роки тому

    and this is the problem with academic types - function template does not have to be visible in "its entirety" , that is why in c++ we have linker , forward declaration /specialization is perfectly acceptable in c++ ( it is not java , the gentleman is probably confused about that )

  • @ARTijOMS
    @ARTijOMS 5 років тому +3

    -- "Function templates are special functions ..."
    Conceptually, they can be seen as functions (in a mathematical sense) that take types as arguments and spit out a function (in a C++ sense).

    • @CiprianNedisan
      @CiprianNedisan 5 років тому +1

      Exactly, templates are like mathematical mappings (functions), which take arguments and map to functions.

    • @renning22
      @renning22 5 років тому

      Exaxtly, they are functions input types output plain c++ functions, computed by compiler.

    • @valbogda5512
      @valbogda5512 5 років тому

      Exactly #3, I'm surprised that none called him on that. Templates clearly map some things to some other things. His implied argument against it is that we can't call them, yet we can definitely observe them :). To give him the benefit of a doubt, he might have wanted to mean that thinking of them as "functions" is unhelpful. But to state that they are notany kind of function is blatantly wrong. Furthermore, without having the context of the quotes he presented we can't be sure whether they were used wrong or not.

  • @DanielHsHu
    @DanielHsHu 2 роки тому +2

    Why the hell do i need to invest space in my brain to hold those rules? Just dont write code in such a way. A code should be cleanly understandable with minimal amount of knowledge and mental work. Inserting artificial rules to solve artificial problems, and expecting people to remember those rules is innefficient.

    • @fwang3695
      @fwang3695 Рік тому

      I feel bad for all those compiler developers that have to put up with all these non senses

    • @__hannibaalbarca__
      @__hannibaalbarca__ Рік тому

      No no… ;
      This because our Mathematical level goes down and down;
      And other thing that all compiler designers were Mathematicians first before CS; and As Mathematician I like and i work to put thing more general and universal of use and make C++ very close and close to maths Axiomatic.