home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #18 / NN_1992_18.iso / spool / comp / sys / next / programm / 5655 < prev    next >
Encoding:
Text File  |  1992-08-16  |  2.0 KB  |  55 lines

  1. Newsgroups: comp.sys.next.programmer
  2. Path: sparky!uunet!stanford.edu!leland.Stanford.EDU!jessica.stanford.edu!brod
  3. From: brod@jessica.stanford.edu (Brodie Lockard)
  4. Subject: Re: NeXT Concepts.
  5. Message-ID: <1992Aug17.044849.27255@leland.Stanford.EDU>
  6. Keywords: Objetive-C, super, NeXT Window Server, MACH.
  7. Sender: news@leland.Stanford.EDU (Mr News)
  8. Organization: Academic Information Resources
  9. References: <900@tdat.teradata.COM>
  10. Distribution: usa
  11. Date: Mon, 17 Aug 92 04:48:49 GMT
  12. Lines: 41
  13.  
  14. In article <900@tdat.teradata.COM> cyk@tos28.teradata.com () writes:
  15.  
  16. >   1] Can a client of a NeXT Step window server be running
  17. >      on a remote host?  If this is possible, under which
  18. >      document is this capability documented?
  19.  
  20. If you mean "Can an app running on one NeXT display on another?" then yes.
  21. In the Preferences app on the displaying machine, under Unix Expert, check
  22. "Public Window Server," log out, and log back in.  Then, open a shell on
  23. the displaying machine, rlogin to the machine where the app is and type
  24.  
  25. appmachine>TheApp -NXHost displaymachine
  26.  
  27. After a bit, a miniwindow will appear at the bottom of displaymachine's
  28. screen, representing the app.  Double-click it.
  29.  
  30. >   2] Does NeXT Step take advantage of MACH's threading, 
  31. >      virtual memory management and messaging facilities?
  32.  
  33. Dunno.
  34.  
  35. >   3] In Concepts, there is an example, illustrating the use 
  36. >      of SUPER in Objective-C, in the following way:
  37.  
  38.                 ...
  39. >        bInstance = [super new];
  40.                 ...
  41. >
  42. >       The semantics illustrated above seems to imply that 
  43. >       bInstance will be pointing an instance of A since
  44. >       "super" causes the invokataion of A's new.
  45. >
  46. >       Will class object B return a structure, which properly
  47. >       represents the newly created instance of B, if B has 
  48. >       additional instance variables other than A's?
  49.  
  50. bInstance will be pointing to an instance of B, which is exactly like an
  51. instance of A, except that it has whatever additional instance variables
  52. and methods you've declared in B.h.
  53.  
  54. Brodie Lockard      brod@jessica.stanford.edu
  55.