Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.c++ > #86742

Re: C++ comma operator ?

From Gawr Gura <gawrgura@mail.hololive.com>
Newsgroups comp.lang.c++
Subject Re: C++ comma operator ?
Date 2022-09-30 13:17 -0700
Organization Hololive EN.
Message-ID <th7iss$13ibe$1@dont-email.me> (permalink)
References <th5sej$tqvo$1@dont-email.me> <th5tfi$u0ms$1@dont-email.me> <th5vqf$u4b9$1@redfloyd.dont-email.me> <TKDZK.110060$tRy7.36805@fx36.iad> <th7dva$3h5$1@gioia.aioe.org>

Show all headers | View raw


> And yes, I am wondering if I will have to use the abhorrent "using 
> namespace fem;" statement to make sure that I get the correct write 
> function (which is no guarantee at all).  Or, if I will have to use 
> "fem::write".

The write symbol in the example program is an object of the type 
fem::common_writer (you can see the declaration on line 70). Obviously, 
you will have to name the type explicitly, provide a using declaration, 
or rely on type inference when you declare a value of that type. write 
is just the name of the object though so you could call it anything you 
like. Perhaps:

fem::common_writer gregory(cmn);

or

fem::common_writer louise(cmn);

If you want to be able to use the POSIX write function in the same 
program you could get it with ::write rather than just write.

Back to comp.lang.c++ | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

C++ comma operator ? Lynn McGuire <lynnmcguire5@gmail.com> - 2022-09-29 23:48 -0500
  Re: C++ comma operator ? Lynn McGuire <lynnmcguire5@gmail.com> - 2022-09-30 00:01 -0500
    Re: C++ comma operator ? Lynn McGuire <lynnmcguire5@gmail.com> - 2022-09-30 00:03 -0500
  Re: C++ comma operator ? James Kuyper <jameskuyper@alumni.caltech.edu> - 2022-09-30 01:05 -0400
    Re: C++ comma operator ? red floyd <no.spam.here@its.invalid> - 2022-09-29 22:45 -0700
      Re: C++ comma operator ? scott@slp53.sl.home (Scott Lurndal) - 2022-09-30 15:16 +0000
        Re: C++ comma operator ? Lynn McGuire <lynnmcguire5@gmail.com> - 2022-09-30 13:53 -0500
          Re: C++ comma operator ? Gawr Gura <gawrgura@mail.hololive.com> - 2022-09-30 13:17 -0700
          Re: C++ comma operator ? scott@slp53.sl.home (Scott Lurndal) - 2022-10-01 16:56 +0000
            Re: C++ comma operator ? Lynn McGuire <lynnmcguire5@gmail.com> - 2022-10-01 13:13 -0500
            Re: C++ comma operator ? Tim Rentsch <tr.17687@z991.linuxsc.com> - 2022-10-03 02:32 -0700
              Re: C++ comma operator ? Juha Nieminen <nospam@thanks.invalid> - 2022-10-03 10:48 +0000
    Re: C++ comma operator ? Lynn McGuire <lynnmcguire5@gmail.com> - 2022-09-30 13:32 -0500
      Re: C++ comma operator ? Lynn McGuire <lynnmcguire5@gmail.com> - 2022-10-01 14:30 -0500
        Re: C++ comma operator ? James Kuyper <jameskuyper@alumni.caltech.edu> - 2022-10-02 16:08 -0400
    Re: C++ comma operator ? Manfred <noname@add.invalid> - 2022-10-01 01:03 +0200
      Re: C++ comma operator ? Lynn McGuire <lynnmcguire5@gmail.com> - 2022-09-30 23:09 -0500
  Re: C++ comma operator ? Gawr Gura <gawrgura@mail.hololive.com> - 2022-09-29 23:19 -0700
    Re: C++ comma operator ? Lynn McGuire <lynnmcguire5@gmail.com> - 2022-09-30 13:31 -0500
  Re: C++ comma operator ? Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2022-09-30 12:41 -0700
    Re: C++ comma operator ? Tim Rentsch <tr.17687@z991.linuxsc.com> - 2022-10-03 02:38 -0700
  Re: C++ comma operator ? Lynn McGuire <lynnmcguire5@gmail.com> - 2022-09-30 23:48 -0500

csiph-web