From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,FREEMAIL_FROM autolearn=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,f039470e8f537101 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2003-07-30 12:25:01 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!logbridge.uoregon.edu!feed2.news.rcn.net!rcn!nntp.abs.net!ash.uu.net!spool.news.uu.net!not-for-mail Date: Wed, 30 Jul 2003 15:24:41 -0400 From: Hyman Rosen User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.5a) Gecko/20030611 Thunderbird/0.1a X-Accept-Language: en-us, en MIME-Version: 1.0 Newsgroups: comp.lang.ada Subject: Re: Non-philosophical definition of Eiffel? References: <7u9Ua.13412$634.10307@nwrdny03.gnilink.net> <1059416297.548253@master.nyc.kbcfp.com> <1059486223.780998@master.nyc.kbcfp.com> <8tucivgbh5hkuicrpdeuavau8muf6a9mrh@4ax.com> <1059496557.747795@master.nyc.kbcfp.com> <82347202.0307291339.1f8a6b65@posting.google.com> <1059517988.954409@master.nyc.kbcfp.com> <1059578357.691797@master.nyc.kbcfp.com> In-Reply-To: Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Organization: KBC Financial Products Message-ID: <1059593081.681227@master.nyc.kbcfp.com> Cache-Post-Path: master.nyc.kbcfp.com!unknown@nightcrawler.nyc.kbcfp.com X-Cache: nntpcache 3.0.1 (see http://www.nntpcache.org/) NNTP-Posting-Host: 204.253.250.10 X-Trace: 1059593081 2485 204.253.250.10 Xref: archiver1.google.com comp.lang.ada:41038 Date: 2003-07-30T15:24:41-04:00 List-Id: Frank J. Lhota wrote: > Can you clarify the difference between the terms "trick" and "technique"? Is > "technique" necessarily something else other than a dressed-up trick? A trick becomes a technique once it's found to be generally useful in some way and becomes part of the established way of doing things. One of the best C++ examples is the Barton & Nackman inheritance trick, which has achieved wide use and goes under the name of "curiously recurring template pattern" template struct Base { /*...*/ }; struct MyClass : Base { /*...*/ }; where a class inherits from a template parameterized with the class itself.