home *** CD-ROM | disk | FTP | other *** search
/ Peanuts NeXT Software Archives / Peanuts-1.iso / CDROM / FAQs / Objective-C / answers next >
Encoding:
Internet Message Format  |  1996-10-17  |  35.8 KB

  1. Path: informatik.tu-muenchen.de!fu-berlin.de!news.mathworks.com!howland.erols.net!surfnet.nl!news.tue.nl!usenet
  2. From: tiggr@es.ele.tue.nl (Tiggr)
  3. Newsgroups: comp.lang.objective-c,comp.answers,news.answers
  4. Subject: comp.lang.objective-c FAQ, part 1/3: Answers
  5. Supersedes: <answers_842976002@es.ele.tue.nl>
  6. Followup-To: comp.lang.objective-c
  7. Date: 17 Oct 1996 16:00:02 GMT
  8. Organization: Eindhoven University of Technology, the Netherlands
  9. Lines: 818
  10. Approved: news-answers-request@mit.edu
  11. Expires: 26 Nov 1996 16:00:01 GMT
  12. Message-ID: <answers_845568001@es.ele.tue.nl>
  13. Reply-To: tiggr@es.ele.tue.nl (Tiggr)
  14. NNTP-Posting-Host: krait.es.ele.tue.nl
  15. Summary: This first part of the comp.lang.objective-c FAQ postings
  16.     tries to answer all your Objective-C questions.
  17. Xref: informatik.tu-muenchen.de comp.lang.objective-c:5925 comp.answers:21749 news.answers:84431
  18.  
  19. Archive-name: Objective-C/answers
  20. Version: $Id: answers,v 3.31 1996/09/29 11:48:08 tiggr Exp $
  21.  
  22.  
  23.                  Answers to
  24.  
  25.              FREQUENTLY ASKED QUESTIONS
  26.  
  27.                concerning Objective-C
  28.  
  29.  
  30. This is the first in a series of three informational postings concerning
  31. comp.lang.objective-c.  This first part answers FAQs; the second part lists
  32. available class libraries and the third part is a simple sample Objective-C
  33. program.
  34.  
  35. This posting answers the following questions:
  36.  
  37.  1   What is Objective-C?
  38.  2   What is the difference between Objective-C and C++?
  39.  3   What exactly is it that makes Objective-C have `classes similar to
  40.      Smalltalk', and what are the resulting capabilities of Objective-C?
  41.  4   What are the `nice features' of Objective-C?
  42.  5   What are some of the common problems of the language and how can I work
  43.      around them?
  44.  6   What object encapsulation does Objective-C provide?
  45.  7   What are Protocols?
  46.  8   How can garbage collection be applied to Objective-C?
  47.  9   What is the difference between the NeXTSTEP, Stepstone and GNU CC
  48.      versions of Objective-C?
  49.  10  How do I debug Objective-C using a non-NeXT gdb?
  50.  11  I get this `Floating exception'...
  51.  12  Why am I lectured by gcc about `#import'?
  52.  13  Did NeXT buy Stepstone?  [NO!]
  53.  14  What written information concerning Objective-C is available?
  54.  15  What kind of Objective-C support is provided by Stepstone?
  55.  16  What kind of Objective-C support is provided by NeXT?
  56.  17  What kind of Objective-C support is provided by GNU?
  57.  18  What kind of Objective-C support is provided by BPG.
  58.  19  What are the newsgroups to read or mailing lists to subscribe to in order
  59.      to stay up-to-date on developments for GNU Objective-C?
  60.  20  Are there any FTP sites with Objective C code?  Where?
  61.  21  If there any information on the Net concerning Objective-C?
  62.  22  For more information...
  63.  
  64. (To find a question search on the question number starting a line.)
  65.  
  66. 1   What is Objective-C?
  67.  
  68.     Objective-C is an object oriented computer programming language.  It is
  69.     a superset of ANSI C and provides classes and message passing similar to
  70.     Smalltalk.
  71.  
  72.     Objective-C includes, when compared to C, a few more keywords and
  73.     constructs, a short description of which follows.  For a complete example
  74.     of the application of the constructs, see part 3 of this FAQ.
  75.  
  76.     `@interface' declares a new class.  It indicates the name of the class,
  77.     the name of its superclass, the protocols adhered to (see Q7), the
  78.     layout of the instance variables (similar to the definition of a struct,
  79.     but including encapsulation information (see Q6)) and declares the
  80.     methods implemented by this class.  A class' interface usually resides
  81.     in a file called `<classname>.h'.
  82.  
  83.     `@implementation' defines a class.  The implementation is no more than a
  84.     collection of method definitions.  Without an implementation, a class
  85.     does not exist at run time.  The implementation of a class usually
  86.     resides in a file called `<classname>.m'.
  87.  
  88.     A `@category' is a named collection of method definitions which are
  89.     added to an existing class.  With the NeXT runtime, a category can
  90.     redefine existing methods.  However, with the GNU runtime, a category
  91.     can not do so.
  92.  
  93.     Objective-C includes the predefined type `id' which stands for a pointer
  94.     to some object.  Thus, `id obj;' declares a pointer to an object.  The
  95.     actual class of the object being pointed to is almost irrelevant, since
  96.     Objective-C does run-time type checking.
  97.  
  98.     `-message;' declares a method called `message'.  The `-' indicates that
  99.     the message can be sent to objects.  A `+' instead indicates the message
  100.     can be sent to class objects.  A method is similar to a function in that
  101.     it has arguments and a return value.  The default return type is `id'.
  102.     If a method has nothing useful to return, it returns `self', which is a
  103.     pointer to the object to which the message was sent (similar to `this'
  104.     in C++).
  105.  
  106.     [obj message], [obj message: arg1] and [obj message: arg1 with: arg2]
  107.     are examples of sending a message to the object OBJ with 0, 1 and 2
  108.     arguments respectively.  The name of the message is called the selector.
  109.     In this example, the selectors are: `message', `message:' and
  110.     `message:with:', respectively.
  111.  
  112. 2   What is the difference between Objective-C and C++?
  113.  
  114.     C++ follows the Simula 67 school of OO programming, where Objective-C
  115.     follows the Smalltalk school.  In C++ the static type of an object
  116.     determine whether you can send it a message, in Objective-C the dynamic
  117.     type determine it.  The Simula 67 school is safer, in that more errors
  118.     are detected at compile time.  The Smalltalk school is more flexible, as
  119.     some valid programs will execute correctly in Smalltalk, where they
  120.     would be rejected by Simula 67.
  121.  
  122.     Stepstone's Objective-C allows you to chose between the dynamic and
  123.     static binding, GNU and NeXT do not.  ANSI C++ allows you to use dynamic
  124.     binding, but discourages you from doing so.
  125.  
  126.     In many ways, the difference between C++ and Objective-C is more a
  127.     question of mindset than technical barriers.  Are you willing to offer
  128.     some flexibility for some safety?  Advocates for the Simula 67 school
  129.     claims that a well designed program doesn't need the extra flexibility
  130.     (a lie), while advocates for the Smalltalk school claims that the errors
  131.     are no problem in practice (another lie).
  132.  
  133.     Pragmatic differences between Objective-C and C++ include:
  134.  
  135.     C++ has operator overloading.  Some consider this to be `syntactic
  136.     sugar', and it is, but it can be a quite handy bit of sugar.
  137.  
  138.     C++ has multiple inheritance.  There are several ways to `get
  139.     around' this in Objective-C (see below).
  140.  
  141.     The added syntax and semantics of C++ is huge, while Objective-C is
  142.     C plus just a small number of new features.
  143.  
  144. 3   What exactly is it that makes Objective-C have `classes similar to
  145.     Smalltalk', and what are the resulting capabilities of Objective-C?
  146.  
  147.     Objective-C is as close to Smalltalk as a compiled language allows.  The
  148.     following is a list of the features `taken' from Smalltalk:
  149.  
  150.       * Objective-C is compiled---Smalltalk is only partially compiled.  The
  151.     current Objective-C implementations are all *much* faster than any
  152.     Smalltalk.  For example ParcPlace Smalltalk-80/4 is at least 3 times
  153.     slower than both the GNU and NeXT Objective-C's.  (This was measured
  154.     using the Self/Smalltalk benchmark suite available by FTP from
  155.     `self.stanford.edu:pub/Self-2.0.1'.)
  156.  
  157.     The big difference of course is that Objective-C does hybrid typing:
  158.     one can choose to represent a string as a `char *' or as an object,
  159.     whereas in Smalltalk, everything is an object.  This is a reason for
  160.     Objective-C being faster.  On the other hand, if every bit of
  161.     information in an Objective-C program would be represented by an
  162.     object, the program would probably run at a speed comparable to
  163.     Smalltalk and it would suffer from not having optimizations
  164.     performed on the basic classes, like Smalltalk can do.
  165.  
  166.       * You may add or delete methods and classes at runtime.  (On GNU and
  167.     NeXT one can load new classes and categories.  On Stepstone, which
  168.     lacks categories, the only way to add methods is to load a subclass
  169.     which then does a `+poseAs:' of the class to have methods added.
  170.     This is less flexible, but it sort-of does the trick of just adding
  171.     methods.)
  172.  
  173.       * Much of the syntax, i.e. Smalltalk uses method names like
  174.     `a:method:name:', as does Objective-C.  In Objective-C, the message
  175.     sending construct is enclosed in square brackets, like this:
  176.     `[anObject aMessage: arg]' whereas Smalltalk uses something like
  177.     `anObject aMessage: arg'.
  178.  
  179.       * The basic class hierarchy, that is, having class `Object' in the very
  180.     top, and letting most other classes inherit from it.
  181.  
  182.       * Most method names in class object is the same.  E.g. `respondsTo:'.
  183.     What is called `doesNotUnderstand:' in Smalltalk is called
  184.     `doesNotRecognize:' in Objective-C.
  185.  
  186.       * Smalltalk normally uses `doesNotUnderstand:' to implement
  187.     forwarding, delegation, proxies, etc.  In Objective-C, such
  188.     functionality is implemented by `forward::'.
  189.  
  190.       * Objective-C has meta classes mostly like Smalltalk.
  191.  
  192.       * Objective-C does not have class variables like Smalltalk, but pool
  193.     variables and globals are easily emulated via static variables.
  194.  
  195. 4   What are the `nice features' of Objective-C?
  196.  
  197.     The possibility to load class definitions and method definitions
  198.     (which extend a class) at run time.
  199.  
  200.     Objects are dynamically typed: Full type information (name and type
  201.     information of methods and instance variables and type information
  202.     of method arguments) is available at run time.  A prime example of
  203.     application of this feature is `-loadNibSection:owner:' method of
  204.     NeXTSTEP's Application class.
  205.  
  206.     Persistence [...].
  207.  
  208.     Remote objects [...].
  209.  
  210.     Delegation and target/action protocols [...].
  211.  
  212. 5   What are some of the common problems of the language and how can I work
  213.     around them?
  214.  
  215.     There are some `common problems':
  216.  
  217.     There is no innate multiple inheritance (of course some see this as
  218.     a benefit).
  219.  
  220.         To get around it you can create a compound class, i.e. a class
  221.         with instance variables that are ids of other objects.
  222.         Instances can specifically redirect messages to any combination
  223.         of the objects they are compounded of.  (It isn't *that* much of
  224.         a hassle and you have direct control over the inheritance
  225.         logistics.)  [Of course, this is not `getting around the problem
  226.         of not having multiple inheritance', but just modeling your
  227.         world slightly different in such a way that you don't need
  228.         multiple inheritance.]
  229.  
  230.         Protocols address the absence of multiple inheritance (MI) to
  231.         some extent: Technically, protocols are equivalent to MI for
  232.         purely "abstract" classes (see the answer on `Protocols' below).
  233.  
  234.         [How does Delegation fit in here?  Delegation is extending a
  235.         class' functionality in a way anticipated by the designer of
  236.         that class, without the need for subclassing.  One can, of
  237.         course, be the delegate of several objects of different
  238.         classes.  ]
  239.  
  240.     There are no class variables.
  241.  
  242.         You can get around this by defining a static variable in the
  243.         implementation file, and defining access methods for it.  This
  244.         is actually a more desirable way of designing a class hierarchy,
  245.         because subclasses shouldn't access superclass storage (this
  246.         would cause the subclass to break if the superclass was
  247.         reimplemented), and allows the subclass to override the storage
  248.         (if the classes access all their own variables via methods).
  249.  
  250.         [The question remains what the exact syntax of class variables
  251.         should be: Should a class object A be seen as an instance of its
  252.         meta-class MA, which has a super class MB being the meta-class
  253.         of A's super, B, and, as such, should A have separate instances
  254.         of class variables defined for B?  Or not?]
  255.  
  256. 6   What object encapsulation does Objective-C provide?
  257.  
  258.     Object encapsulation can be discerned at two levels: encapsulation of
  259.     instance variables and of methods.  In Objective-C, the two are quite
  260.     different.
  261.  
  262.     Instance variables:
  263.  
  264.     The keywords @public, @private and @protected are provided to secure
  265.     instance variables from prying eyes to some extent.
  266.  
  267.         @public        anyone can access any instance variable.
  268.         @protected    only methods belonging to this object's
  269.                 class or a subclass thereof have access to
  270.                 the instance variables.
  271.         @private    only methods of this class may access the
  272.                 instance variables.  This excludes methods
  273.                 of a subclass.
  274.  
  275.     If not explicitly set, all instance variables are @protected.
  276.     Note: Instance variable encapsulation is enforced at compile-time.
  277.     At run-time, full typing information on all instance variables is
  278.     available, which sort-of makes all variables @public again.  This
  279.     information is for instance used to do instance variable lookup by
  280.     NeXTSTEP's `loadNibSection:owner:' method, making it completely
  281.     safe.
  282.  
  283.     Methods:
  284.  
  285.     To the Objective-C runtime, all methods are @public.  The programmer
  286.     can only show his/her intention of making specific methods not
  287.     public by not advertising them in the class' interface.  In
  288.     addition, so-called private methods can be put in a category with a
  289.     special name, like `secret' or `private'.
  290.  
  291.     However, these tricks do not help much if the method is declared
  292.     elsewhere, unless one reverts to indicating the object's type at
  293.     compile time.  And the runtime doesn't care about all this and any
  294.     programmer can easily circumvent the tricks described.  Thus, all
  295.     methods really are always @public.
  296.  
  297. 7   What are Protocols?
  298.  
  299.     Protocols are an addition to Objective-C that allows you to organize
  300.     related methods into groups that form high-level behaviors.  Protocols
  301.     are currently available in NeXTSTEP (since 3.0) and GCC (since 2.4).
  302.  
  303.     Protocols address the MI issue.  When you design an object with multiple
  304.     inheritance, you usually don't want *all* the features of both A and B,
  305.     you want feature set X from A and feature set Y from B.  If those
  306.     features are methods, then encapsulating X and Y in protocols allows you
  307.     to say exactly what you want in your new object.  Furthermore, if
  308.     someone changes objects A or B, that doesn't break your protocols or
  309.     your new object.  This does not address the question of new instance
  310.     variables from A or B, only methods.
  311.  
  312.     Protocols allow you to get type-checking features without sacrificing
  313.     dynamic binding.  You can say "any object which implements the messages
  314.     in Protocol Foo is OK for this use", which is usually what you want -
  315.     you're constraining the functionality, not the implementation or the
  316.     inheritance.
  317.  
  318.     Protocols give library builders a tool to identify sets of standard
  319.     protocols, independent of the class hierarchy.  Protocols provide
  320.     language support for the reuse of design, whereas classes support the
  321.     reuse of code.  Well designed protocols can help users of an application
  322.     framework when learning or designing new classes.  Here is a simple
  323.     protocol definition for archiving objects:
  324.  
  325.     @protocol Archiving
  326.     -read: (Stream *) stream;
  327.     -write: (Stream *) stream;
  328.     @end
  329.  
  330.     Once defined, protocols can be referenced in a class interface as
  331.     follows:
  332.  
  333.     /* MyClass inherits from Object and conforms to the
  334.        Archiving protocol.  */
  335.     @interface MyClass: Object <Archiving>
  336.     @end
  337.  
  338.     Unlike copying methods to/from other class interfaces, any incompatible
  339.     change made to the protocol will immediately be recognized by the
  340.     compiler (the next time the class is compiled).  Protocols also provide
  341.     better type checking without compromising the flexibility of untyped,
  342.     dynamically bound objects.
  343.  
  344.     MyClass *obj1 = [MyClass new];
  345.  
  346.     // OK: obj1 conforms to the Archiving protocol.
  347.     id <Archiving> obj2 = obj1;
  348.  
  349.     // Error: obj1 does not conform to the TargetAction protocol.
  350.     id <TargetAction> obj3 = obj1;
  351.  
  352.     Another use of protocols is that you can declare an ID to conform to
  353.     some protocol in order to help the compiler to resolve method name
  354.     conflicts:
  355.  
  356.     @interface Foo: Object
  357.     -(int) type;
  358.     @end
  359.  
  360.     @protocol Bar
  361.     -(const char *) type;
  362.     @end
  363.  
  364.     -blah1: d
  365.     {
  366.       id t = [d someMethod];
  367.       do_something_with ([t type]);
  368.     }
  369.  
  370.     -blah2: d
  371.     {
  372.       id <Bar> t = [d someMethod];
  373.       do_something_with ([t type]);
  374.     }
  375.  
  376.     In this example, there are two kinds of the `-type' method.  In the
  377.     method `-blah1:', the compiler doesn't know what return type to expect
  378.     from `[t type]', since it has seen both declarations of `-type'.  In
  379.     method `-blah2:', it knows that `t' conforms to the `Bar' protocol and
  380.     thus that `t' implements the `-type' method returning a `const char *'.
  381.  
  382. 8   How can garbage collection be applied to Objective-C?
  383.  
  384.     Currently, there are two implementations of garbage collection which can
  385.     be used in Objective-C programs [that I'm aware of].  Both methods use a
  386.     radically different approach.
  387.  
  388.     Garbage Collection in an Uncooperative Environment
  389.  
  390.         This implements garbage collection of chunks of memory obtained
  391.         through (its replacement of) malloc(3).  It works for C, C++,
  392.         Objective-C, etc.
  393.  
  394.         @article{bw88,
  395.         title="Garbage Collection in an Uncooperative Environment",
  396.         author="Hans J\"urgen Boehm and Mark Weiser",
  397.         journal="Software Practice and Experience",
  398.         pages=807-820,volume=18,number=9,month=sep,year=1988}
  399.  
  400.         It is available as `ftp://parcftp.xerox.com/pub/gc/gc4.3.tar.gz'.
  401.  
  402.     Garbage Collection through Class Abstraction
  403.  
  404.         This implements garbage collection through class abstraction
  405.         (and hence is Objective-C specific).  Anything to be garbage
  406.         collectible must be an object (instance of a subclass of a
  407.         specific class) or have such an object for a wrapper.
  408.  
  409.         Available as `ftp://ftp.es.ele.tue.nl/pub/tiggr/tl.tar.gz'
  410.  
  411.     Apart from the obvious radical difference, another difference currently
  412.     is also noteworthy: The first method automatically protects objects
  413.     pointed to from the stack, bss or data segments; the second doesn't.
  414.  
  415. 9   What is the difference between the NeXTSTEP, Stepstone and GNU CC
  416.     versions of Objective-C?
  417.  
  418.     NeXT extended Stepstone's definition of the language to include new
  419.     constructs, such as protocols, which are touted to deal with some
  420.     aspects of multiple inheritance.
  421.  
  422.     Stepstone supports static _binding_, whereas NeXTSTEP and GNU CC don't.
  423.     All implementations do support static _typing_.
  424.  
  425.     Stepstone has a standard set of Foundation class libraries that work
  426.     across all supported machines, including NeXTSTEP.  NEXTSTEP comes with
  427.     its own set of libraries (called `kits').  GNU libobjc.a currently only
  428.     includes the `Object' class, though people are busy on a Real library
  429.     (see part two of this FAQ (The ClassWare Listing) for details).
  430.  
  431.     The `Object' class of all implementations differ.
  432.  
  433.     NeXTSTEP and GNU CC support Categories, Stepstone doesn't.
  434.  
  435.     NeXT has a native language debugger (which is a modified gdb);
  436.     Stepstone doesn't; for GNU, patches are available to turn gdb 4.16
  437.     into an Objective-C aware debugger.
  438.  
  439.     NeXTSTEP (from version 3.0) and GCC (from version 2.4) support protocols
  440.     and forward declarations of classes, Stepstone currently does not.
  441.  
  442. 10  How do I debug Objective-C using a non-NeXT gdb.
  443.  
  444.     On August 20 1996, Michael Snyder of NeXT posted patches to GDB 4.16
  445.     to make it Objective-C aware for GNU Objective-C code, at least tested
  446.     on HP-UX, Solaris and MS Windows.  As he did not supply a net.address
  447.     for these patches, I've made them available as
  448.     ftp://ftp.es.ele.tue.nl/pub/objc/gdb-gnu-objc.diff.gz.uue, accompanied
  449.     by ftp://ftp.es.ele.tue.nl/pub/objc/gdb-gnu-objc.README.
  450.  
  451.     Debugging Objective-C using a non-Objective-C aware gdb has been
  452.     documented by Martin.Cracauer@wavehh.hanse.de on
  453.     http://fvkma.tu-graz.ac.at/tbm/objective-c/hint-gdb.html.  (It comes
  454.     down to understanding that you can very well look at Objective-C from
  455.     the C perspective, a language very well understood by gdb.)
  456.  
  457. 11  I get this `Floating exception'...
  458.  
  459.     Then you're running Linux and adding `-lieee' to the linker invocation
  460.     could help.  Thomas March <amadeus@bga.com> reported that on several
  461.     occasions, on systems running Linux ELF, with libc.so.5.0.9 and
  462.     libm.so.5.?.?, the problem was reproducable and adding `-lieee' did not
  463.     solve the problem.  However, switching to a newer libc (libc.so.5.2.18
  464.     and libm.so.5.0.5) both solved the problem and removed the need for
  465.     `-lieee' (i.e. a back to normal situation).
  466.  
  467.     If the problem you're having does not fit either description given, ask.
  468.  
  469. 12  Why am I lectured by gcc about `#import'?
  470.  
  471.     GNU CC issues the following multi-line warning about the how the use
  472.     of `#import' is discouraged (output from GNU CC 2.7.0):
  473.  
  474.     foo.m:1: warning: using `#import' is not recommended
  475.     The fact that a certain header file need not be processed more than once
  476.     should be indicated in the header file, not where it is used.
  477.     The best way to do this is with a conditional of this form:
  478.  
  479.       #ifndef _FOO_H_INCLUDED
  480.       #define _FOO_H_INCLUDED
  481.       ... <real contents of file> ...
  482.       #endif /* Not _FOO_H_INCLUDED */
  483.  
  484.     Then users can use `#include' any number of times.
  485.     GNU C automatically avoids processing the file more than once
  486.     when it is equipped with such a conditional.
  487.  
  488.     In short, use `-Wno-import' as an argument to gcc to stop it from
  489.     producing this.  Another possibility is to compile gcc after having
  490.     changed the line reading `static int warn_import = 1' into `static
  491.     int warn_import = 0' in `cccp.c' (line 467 in GNU CC 2.7.1); this way,
  492.     `-Wno-import' is the default setting.
  493.  
  494.     Whether or not using `#import' is desirable (obviously) has to do with
  495.     how to prevent multiple inclusions of the same file.  Most include
  496.     files, when included multiple times, either do nothing new (possibly
  497.     due to guards being used) or (without the guards) cause the emission
  498.     of C code on which the compiler will choke (due to, for instance,
  499.     repeated typedefs).  Thus, if everybody were to use `#import'
  500.     everybody would be happy, since it does not seem to matter.  However,
  501.     a notable exception to this rule is `assert.h', which changes the
  502.     definition of the `assert' macro depending on the setting of the
  503.     NDEBUG macro.
  504.  
  505.     There is one point to be made in favour of the warning: if the _user_
  506.     of an include file uses `#include' instead of `#import', the guards
  507.     will be necessary.  Thus, actually, the warning should be issued when
  508.     a file is imported that appears not to be guarded.
  509.  
  510.     Apart from the more-or-less religious (and thus useless) debate
  511.     whether `#import' or `#include'-with-guards is better, it has been
  512.     observed that `#import' does not catch re-reading a linked and/or
  513.     duplicated file, whereas the guards do.  However, this is, of course,
  514.     a highly unlikely and probably undesirable situation for which neither
  515.     was designed to catch.
  516.  
  517.     The reason for the existence of `#import' probably is historical: the
  518.     first implementation of Objective-C (by Stepstone) was as a preprocessor
  519.     to C, run after a modified cpp.  `#import' was the include-once
  520.     directive to that cpp.  Since it is part of the Objective-C language, it
  521.     has made it into GNU CC's cpp.
  522.  
  523. 13  Did NeXT buy Stepstone?
  524.  
  525.     No they didn't!
  526.  
  527.     NeXT did acquire all rights previously owned by Stepstone to the
  528.     Objective-C trademark and Objective-C language.  More information on
  529.     `http://www.next.com/AboutNeXT/PressKit/PressReleases/1995/stepstone.040495.html'.
  530.  
  531. 14  What written information concerning Objective-C is available?
  532.  
  533.     Books:
  534.  
  535.     Brad J. Cox, Andrew J. Novobilski: Object Oriented Programming: An
  536.     Evolutionary Approach.  Addison-Wesley Publishing Company, Reading,
  537.     Massachusetts, 1991.  ISBN: 0-201-54834-8 (Japanese: 4-8101-8046-8).
  538.  
  539.     abstract:    The first book on Objective-C, which actually is a
  540.                     book on object oriented system development using
  541.                     Objective-C.
  542.  
  543.     Lewis J. Pinson, Richard S. Wiener: Objective-C: Object Oriented
  544.     Programming Techniques.  Addison-Wesley Publishing Company, Reading,
  545.     Massachusetts, 1991. ISBN 0-201-50828-1 (Japanese: 4-8101-8054-9).
  546.  
  547.     abstract:       Includes many examples, discusses both Stepstone's
  548.                     and NeXT's versions of Objective-C, and the
  549.                     differences between the two.
  550.  
  551.     Timothy Budd: An Introduction to Object-Oriented Programming.
  552.     Addison-Wesley Publishing Company, Reading, Massachusetts.
  553.     ISBN 0-201-54709-0 (Japanese: 4-8101-8048-4).
  554.  
  555.     abstract:       An intro to the topic of OOP, as well as a comparison
  556.                     of C++, Objective-C, Smalltalk, and Object Pascal
  557.  
  558.     Simson L. Garfinkel, Michael K. Mahoney: NeXTSTEP Programming Step
  559.     ONE: Object-Oriented Applications.  TELOS/Springer-Verlag, 1993
  560.     (tel: (800)SPR-INGE).
  561.  
  562.     abstract:       It's updated to discuss NeXTSTEP 3.0 features
  563.                     (Project Builder, new development environment)
  564.                     but doesn't discuss 3DKit or DBKit.
  565.  
  566.     NeXTSTEP Object Oriented Programming and the Objective C Language.
  567.     Addison-Wesley Publishing Company, Reading, Massachusetts, 1993.
  568.     ISBN 0-201-63251-9 (Japanese: 4-7952-9636-7).  This is also
  569.     available on the World Wide Web at
  570.     http://www.next.com/Pubs/Documents/OPENSTEP/ObjectiveC/objctoc.htm.
  571.  
  572.     abstract:     This book describes the Objective-C language as it
  573.             is implemented for NeXTSTEP.  While clearly targeted
  574.             at NeXTSTEP, it is a good first-read to get to learn
  575.             Objective-C.
  576.  
  577.     Articles
  578.  
  579.     `Why I need Objective-C', by Christopher Lozinski.
  580.     Journal of Object-Oriented Programming (JOOP) September 1991.
  581.     Contact info@bpg.com for a copy and subscription to the BPG
  582.     newsletter.
  583.  
  584.     Abstract:    This article discusses the differences between C++
  585.             and Objective-C in great detail and explains why
  586.             Objective-C is a better object oriented language.
  587.  
  588.     `Concurrent Object-Oriented C (cooC)', by Rajiv Trehan et. al.
  589.     ACM SIGPLAN Notices, Vol. 28, No 2, February 1993.
  590.  
  591.     Abstract:    This article discusses cooC, a language based on the
  592.             premise that an object not only provides an
  593.             encapsulation boundary but should also form a
  594.             process boundary.  cooC is a superset of
  595.             Objective-C.
  596.  
  597.     `Porting NEXTSTEP Applications to Microsoft Windows',
  598.     by Christopher Lozinski.  NEXTWORLD EXPO Conference Proceedings,
  599.     San Francisco, CA, May 25-27, 1993.  Updated version of the article
  600.     available from the author.  Contact info@bpg.com.
  601.  
  602.     Abstract:    This article describes how to develop Objective-C
  603.             applications for both Microsoft Windows and
  604.             NEXTSTEP.
  605.  
  606.     GNU Documentation
  607.  
  608.     The GNU project needs a free manual describing the Objective-C
  609.     language features.  Because of its cause, GNU cannot include the
  610.     non-free books in the GNU system, but the system needs to come with
  611.     documentation.
  612.  
  613.     Anyone who can write good documentation, please think about giving
  614.     it to the GNU project.  Contact rms@gnu.ai.mit.edu.
  615.  
  616. 15  What kind of Objective-C support is provided by Stepstone?
  617.  
  618.     Compilers and runtime for: Apple Macintosh (running Mac Programmers
  619.     Workshop), DEC Stations (ULTRIX), Data General AViiON (DG/UX),
  620.     HP9000/300,400,700,800 (HP-UX), IBM RISC System/6000 (AIX), MIPS,
  621.     NeXT, PC-AT (MS-DOS), PS/2 (AIX or OS/2), SCO/NCR UNIX SYS V, Sun 3, 4,
  622.     SPARCstations (SunOS or Solaris), Silicon Graphics INDIGO and VAX(VMS).
  623.     Other ports available by market demands or consulting services.
  624.  
  625.     ICpak101 Foundation Class Library is available on all the above.
  626.     ICpak201 GUI Class Library is available on platforms that support
  627.     XWindows, Motif, OpenWindows and SunView.
  628.  
  629.        The Stepstone Corporation
  630.     (203) 426-1875 - (800) BUY-OBJEct voice / (203) 270-0106 fax
  631.     75 Glen Road
  632.     Sandy Hook, CT 06482
  633.  
  634. 16  What kind of Objective-C support is provided by NeXT?
  635.  
  636.     The Objective-C compiler and libraries come bundled with the
  637.     NEXTSTEP Developer CD.  The compiler essentially is GNU CC.  For
  638.     information on the Kits which are part of NEXTSTEP, see the
  639.     ClassWare Listing (part 2 of this FAQ).
  640.  
  641.     The sources to the NeXT-modified GNU products are available on the
  642.     developer CD, and from
  643.     ftp://ftp.next.com/pub/SoftwareDownloads/GNUSource/.
  644.  
  645.     Products are:
  646.  
  647.         NEXTSTEP 3.3, Mach/OpenStep 4.0, Enterprise Objects Framework
  648.         Portable Distributed Objects, WebObjects
  649.  
  650.     NeXT Computer, Inc.
  651.     900 Chesapeake Drive
  652.     Redwood City, CA 94063
  653.     tel: 800 848 NEXT
  654.     fax: 415 780 2801
  655.     email: NeXTanswers@NeXT.COM
  656.     www: http://www.next.com/
  657.  
  658. 17  What kind of Objective-C support is provided by GNU?
  659.  
  660.     GNU CC, since version 2, comes with an Objective-C compiler.  The
  661.     current distribution of GNU CC (version 2.7.2) includes an Objective-C
  662.     compiler and runtime library.  The latter includes the `Object' class.
  663.     Some people are working on GNU libraries, see part two of this FAQ (The
  664.     ClassWare Listing) for details or visit http://www.gnustep.org/.
  665.  
  666.     If you haven't switched to a GNU CC as recent as 2.4 yet, here's one
  667.     reason to do so: The new runtime (as of 2.4) is more than 3 times as
  668.     fast as the old runtime (pre 2.4) w.r.t. method invocation.
  669.  
  670.     Free Software Foundation
  671.     59 Temple Place -- Suite 330
  672.     Boston, MA   02111
  673.     +1-617-542-5942
  674.  
  675.     General questions about the GNU Project can be asked to
  676.     gnu@prep.ai.mit.edu.
  677.  
  678.     GNU CC comes with an Objective-C compiler and runtime library which
  679.     includes the Object class.
  680.  
  681.     Most GNU software is packed using the new `gzip' compression program.
  682.     Source code is available on most sites distributing GNU software.
  683.  
  684.     For information on how to order GNU software on tape, floppy, or
  685.     cd-rom, check the file etc/ORDERS in the GNU Emacs distribution or in
  686.     GNUinfo/ORDERS on prep, or e-mail a request to: gnu@prep.ai.mit.edu
  687.  
  688.     By ordering your GNU software from the FSF, you help us continue to
  689.     develop more free software.  Media revenues are our primary source of
  690.     support.  Donations to FSF are deductible on US tax returns.
  691.  
  692.     The following sites all carry mirrors of the GNU software at prep.
  693.     Please try them before prep.ai.mit.edu!   thanx -gnu@prep.ai.mit.edu
  694.     ASIA: ftp.cs.titech.ac.jp, utsun.s.u-tokyo.ac.jp:/ftpsync/prep,
  695.         cair.kaist.ac.kr:/pub/gnu, ftp.nectec.or.th:/pub/mirrors/gnu
  696.     AUSTRALIA: archie.au:/gnu (archie.oz or archie.oz.au for ACSnet)
  697.     AFRICA: ftp.sun.ac.za:/pub/gnu
  698.     MIDDLE-EAST: ftp.technion.ac.il:/pub/unsupported/gnu
  699.     EUROPE: irisa.irisa.fr:/pub/gnu, ftp.univ-lyon1.fr:pub/gnu,
  700.         ftp.mcc.ac.uk, unix.hensa.ac.uk:/pub/uunet/systems/gnu,
  701.         ftp.denet.dk, src.doc.ic.ac.uk:/gnu, ftp.eunet.ch,
  702.         nic.switch.ch:/mirror/gnu,
  703.         ftp.informatik.rwth-aachen.de:/pub/gnu,
  704.         ftp.informatik.tu-muenchen.de, ftp.win.tue.nl,
  705.         ftp.funet.fi:/pub/gnu, ftp.stacken.kth.se, isy.liu.se,
  706.         ftp.luth.se:/pub/unix/gnu, ftp.sunet.se:/pub/gnu,
  707.         archive.eu.net
  708.     SOUTH AMERICA: ftp.unicamp.br:/pub/gnu
  709.     WESTERN CANADA: ftp.cs.ubc.ca:/mirror2/gnu
  710.     USA: wuarchive.wustl.edu:/systems/gnu, labrea.stanford.edu,
  711.         ftp.digex.net:/pub/gnu, ftp.kpc.com:/pub/mirror/gnu,
  712.         f.ms.uky.edu:/pub3/gnu, jaguar.utah.edu:/gnustuff
  713.         ftp.hawaii.edu:/mirrors/gnu, ftp.cs.widener.edu,
  714.         vixen.cso.uiuc.edu:/gnu, mrcnext.cso.uiuc.edu:/pub/gnu,
  715.         ftp.cs.columbia.edu:/archives/gnu/prep,
  716.         col.hp.com:/mirrors/gnu, gatekeeper.dec.com:/pub/GNU,
  717.         ftp.uu.net:/systems/gnu
  718.  
  719. 18  What kind of Objective-C support is provided by BPG.
  720.  
  721.     BPG provides the Borland Extensions to Objective-C which allows the
  722.     Objective-C translator to be used with the Borland Compiler, and makes
  723.     it easy to develop Objective-C application for Microsoft Windows.
  724.  
  725.     BPG provides the Smalltalk Interface to Objective-C which makes
  726.     Objective-C objects look like Smalltalk Objects.  It can be used to
  727.     build Graphical User Interface on portable Objective-C objects, or to
  728.     sell Objective-C libraries to Smalltalk developers.
  729.  
  730.     BPG provides the Objective-C Message Bus which sends Objective-C messages
  731.     across heterogeneous computer platforms.
  732.  
  733.     BPG has a library of objects for modelling Objective-C programs.  A browser
  734.     application has been built on this library.  Other potential applications
  735.     include adding class variables to Objective-C, adding runtime information
  736.     about instance variables, and method argument types, generating object
  737.     versions, and eventually building a browser/translator.
  738.  
  739.     Christopher Lozinski
  740.     BPG
  741.     35032 Maidstone Court
  742.     Newark, CA 94560
  743.     Tel: (510) 795-6086
  744.     fax: (510) 795-8077
  745.     email: info@bpg.com
  746.  
  747. 19  What are the newsgroups to read or mailing lists to subscribe to in order
  748.     to stay up-to-date on developments for GNU Objective-C?
  749.  
  750.     Read comp.lang.objective-c, which is bound to discuss current events.
  751.     There is also a mailing list, gnu-objc@gnu.ai.mit.edu, discussing this
  752.     very topic.  To subscribe to this list, send a mail with your request to
  753.     `gnu-objc-request@gnu.ai.mit.edu.'
  754.  
  755.     Furthermore, the various kits that are being developed each come with
  756.     their own mailing list.  See part 2 of this FAQ for more information.
  757.  
  758. 20  Are there any FTP sites with Objective C code?  Where?
  759.  
  760.     ftp://next-ftp.peak.org/pub/next/    (NEXTSTEP)
  761.     ftp://ftp.informatik.uni-muenchen.de
  762.     ftp://ftp.gnustep.org/pub/        (GNUStep)
  763.     ftp://ftp.stack.urc.tue.nl/pub/next/    (NEXTSTEP)
  764.     ftp://ccrma-ftp.stanford.edu/pub/NeXT/    (MusicKit a.o.)
  765.     ftp://ftp.informatik.uni-freiburg.de
  766.     ftp://ftp.cs.unl.edu/pub/ObjC        (some sw and docs)
  767.  
  768.     See also part 2 of this FAQ.
  769.  
  770. 21  If there any information on the Net concerning Objective-C?
  771.  
  772.     Basic and related Objective-C (and/or NeXTSTEP) information is available
  773.     at the following places:
  774.  
  775.     NeXT at http://www.next.com/ with the NeXT Objective-C book at
  776.     http://www.next.com/Pubs/Documents/OPENSTEP/ObjectiveC/objctoc.htm,
  777.  
  778.     Steve deKorte's Objective-C page at
  779.     http://www.batech.com/~dekorte/Objective-C/objc.html,
  780.  
  781.     Brad Cox's Objective-C page at
  782.     http://www.virtualschool.edu/mon/Cox/ObjectiveC.html,
  783.  
  784.     the GNUStep project at http://www.gnustep.org/, with a mirror at
  785.     http://www.nmr.embl-heidelberg.de/GNUstep
  786.  
  787.     the libobjects FAQ at
  788.     ftp://ftp.cs.rochester.edu/pub/u/mccallum/libobjects/Gnustep-FAQ.html,
  789.  
  790.     the NEXTSTEP/OpenStep Information Service at http://www.stepwise.com/,
  791.  
  792.     the eduStep initiative at http://www.nmr.embl-heidelberg.de/eduStep/,
  793.  
  794.     Nelson Minar's Objective-C page at
  795.     http://www.santafe.edu/~nelson/objective-c.html,
  796.  
  797.     Tiggr's Objective-C page at http://www.es.ele.tue.nl/tiggr/objc/,
  798.  
  799.     http://www.nai.net/~lerman,
  800.  
  801.     and of course the HTML versions of this FAQ and associated information
  802.     at the addresses listed below.
  803.  
  804. 22 For more information...
  805.  
  806.     Visit one of the places mentioned in #21, or see part 2 of this FAQ,
  807.     Objective-C/classes a.k.a. the ClassWare Listing, for an (incomplete)
  808.     overview of available Objective-C classes and libraries.  See part 3 of
  809.     this FAQ, Objective-C/sample a.k.a. the Simple Sample Program, for an
  810.     example Objective-C program.
  811.  
  812. A Japanese language version of this FAQ is maintained by Norihiro Itoh
  813. <nito@argotechnos.co.jp>.  It is posted to fj.archives.answers regularly.  A
  814. hypertext version is maintained by Toru Sato <www-admin@cnds.canon.co.jp>
  815. and available at
  816. http://www.cnds.canon.co.jp/Japanese_EUC/Contribution/FAQ_Objective-C/objc_faq_J.html.
  817.  
  818. A World Wide Web hypertext version of this FAQ is maintained by Brian Harvey
  819. <theharv@csld.ucr.edu>.  It is http://csld.ucr.edu/NeXTSTEP/objc_faq.html.
  820. Another WWW version of this FAQ is maintained by Steve Dekorte
  821. <dekorte@suite.com> at http://www.batech.com/~dekorte/Objective-C/objc.html.
  822.  
  823. The early version of this FAQ was compiled by Bill Shirley, with the aid of
  824. many people.  The current version is being maintained by Tiggr, aided by input
  825. from a lot of people, including: Per Abrahamsen, Paul Burchard, Brad Cox,
  826. Christopher Lozinski, Mike Mahoney, Jon F. Rosen, Paul Sanchez, Lee Sailer,
  827. Paul Sanchez, Bill Shirley, Subrata Sircar, Ted Slupesky, Richard Stallman,
  828. and Kersten Krab Thorup,
  829.  
  830. Any text in between `[' and `]' is a comment.  Comments indicate `problems'
  831. with this FAQ, which should be solved.  Send your suggestions, additions,
  832. bug reports, comments and fixes to `tiggr@es.ele.tue.nl'.
  833.  
  834.     The information in this file comes AS IS, WITHOUT ANY WARRANTY.  You may
  835.     use the information contained in this file or distribute this file, as
  836.     long as you do not modify it, make money out of it or take the credits.
  837.