TweetFollow Us on Twitter

Apple's C++
Volume Number:5
Issue Number:11
Column Tag:Jörg's Folder

Apple's C++

By Jörg Langowski, MacTutor Editorial Staff

Note: Source code files accompanying article are located on MacTech CD-ROM or source code disks.

“C++”

OOPS has taken its literal meaning with the brief C++ introduction that I wrote 2 months ago now that I have a compiler to test the examples that I thought up. Of course, I did it all wrong. Seasoned C++ experts might have smiled when they read my ‘matrix class’ definitions, others (like myself) might not have noticed the goofups at all. Anyway, this month you’ll find much more detailed examples of the same kind, and I can assure you they work, because they’ve been tested. [Before you cancel your subscription in panic, let me emphasize that the overview of C++ in the same article is still basically correct].

Someone on the networks came up with this quote: “C++ is the Forth of the 90’s - they don’t call it ‘uh-oh programming’ for nothing”. Well, I can confirm on the uh-oh part, and as far as the Forth is concerned, at least I’m learning this language as much by trial and error as I did with Forth. So let’s follow the learning curve together; maybe that is not such a bad approach for a tutorial.

Our example is an MPW tool that does some array computations using a matrix and vector class that have a number of methods defined. We’ll go through the example step by step, and learn some important features of data structure definition in C++. The program is not Mac-specific; it uses only the standard C++ libraries, so you can check out the examples on a UNIX machine with C++ even if you don’t have access to Apple’s C++ (and if you do, chances are that you might not need this tutorial at all).

Simple I/O in C++

The first few lines of our example - after the #includes - define a simple error message function which writes a string to standard error and exits the program. The definition looks very much like C except for the line

 cerr << p << endl;

which is a C++ I/O statement that writes the string p to standard error. cerr is an object of class ostream which is basically an output file; cerr is predefined to be the standard error output for a UNIX system or for MPW. Likewise, cin and cout are predefined standard input and output (console). << is the output operator, and to write an object x to standard output you simply write

 cout <<  x;

Whether the compiler will accept this statement or not depends whether the operator << has been defined for the type x. Standard definitions for most simple types are contained in the header file Stream.h. The operator >> is the input operator:

 cin >> i;

would read the int i from standard input. endl is used to flush the output buffer (otherwise the actual output might appear on the screen at a later time), and add an end-of-line.

The Vector Class

In the following, we define a class vector, a resizeable one-dimensional array of float with optional range checking. Its private variables are float* v, which will be used as a pointer to the data, and int sz, the number of elements in the vector.

We then declare the class matrix (defined further down) as a friend of vector. Why this? Later, we will define an operator which multiplies a matrix with a vector as a method of the class matrix. This operator needs access to the data contained in the vector. Since the normal way of accessing involves bounds checking and is therefore slow, we want to be able to access the ‘private part’ v of the vector directly. Friends of a class may do this.

The publicly accessible parts of the class are all the methods defined for our vector:

• the constructors, vector(int) and vector(vector&); the first one creates a new vector given its size as an argument, the second one duplicates an existing vector by creating a new one of the same size and copying all the elements;

• the destructor, ~vector(), which will free the space allocated to the object’s data when the object is no longer needed;

• size(), an inline function that returns the length of the vector;

• set_size(int), which changes the size of an existing vector;

• the indexing operator [], for accessing an element of the vector. We have to note here that the operator returns a reference to a float, not a float value, so that an indexed element can be used on both sides of an assignment statement. [] will check the index against the bounds of the vector;

• elem(int i), an inline function which returns the value of the i-th element of the vector without range checking, for fast access;

• the operators =, +, and -, which are used for assignment and elementwise addition or subtraction of vectors. They will check whether the vectors on both sides of the operator sign are of equal size, perform the operation, and return the reference to a newly created vector which contains the result;

• the operator *, which computes the scalar product of two vectors, and returns a float value;

• print(), which prints out the contents of the vector to cout.

The class definition constitutes the interface to the object’s structure and its methods; the actual implementation follows.

I have put informative messages into the constructor and destructor methods so that one can see how new objects are created and released. This is important for debugging; if less objects are released than created, something might have gone wrong, and at least one has wasted memory space.

vector(size) creates an array of floats on the heap that is size elements long. vector(a), where a is another vector, will create a new vector which is an exact copy of a. These constructors are called when new vectors are defined:

vector x(5); // calls vector(int)
vector y = x;  // calls vector(vector&)

In the for statement you see another characteristic feature of C++: declarations can be made anywhere, so the loop index i may be declared as a register variable just for the scope of the loop.

The destructor ~vector() is called when an instance of vector goes ‘out of scope’, and deletes the space allocated for the array v before the object itself is deleted. Defining a destructor is usually done when you have allocated some of your own memory on construction, just as we did.

The operator [] will first see if the index is within the limits of the array and abort with an error message if not (this could be done in a more sophisticated way); then it indexes the private array v and returns a reference to its i-th element. Note that the operator [], when used with v, will be the usual array indexing function; when used on a vector, it uses range checking, since its original definition has been overloaded. If we define a function or an operator with the same name as an existing one, old definitions will automatically be overloaded in C++ 2.0; the overload statement of the previous version described in Stroustrup’s book is not necessary anymore.

The assignment operator will copy all elements of the argument vector into its parent vector, making sure that both are of the same size. It returns a reference to the argument vector, so that multiple assignment statements are possible:

 a = b = c; // copies c into b and a

+ and - create a new vector of the same size as of its arguments and copies the sum of the two vectors into it. The new vector is allocated on the heap, using the new operator:

 vector& c = *new vector(sz);

that is, we define a reference c to a vector, to which we assign the pointer to the new vector. One could think that one could simply create a new instance by writing

 
vector c(sz);

however, this will only create a local instance of vector, which will be deleted as soon as the function is left. The compiler, by the way, complains if you use a local object as the return value (just as a warning, it will still compile ). Rightly so, since local objects are allocated in a local stack frame, and disappear as soon as that stack frame is UNLKed and the JSR called.

Therefore, we must create a new vector in the heap which will hold the result of the addition or subtraction. This will later require some housekeeping on our part, because a heap object is not automatically deleted when its scope is left. We must take care of that ourselves (see below).

The definition of the scalar product, *, and the print() function should now be self-explanatory. I have not given a definition for the resizing function, set_size(int); try whether you can come up with a definition for it.

The Matrix Class

Contrary to what I wrote in the September column, we won’t define matrix as a class derived from vector. Also, we won’t define matrix as an array of vectors; I had tried this approach, which is very elegant when it works, but screwed up so completely that I haven’t come up with a solution as the deadline is approaching. Therefore, we’ll use a simpler definition, which has the advantage of being faster than what I thought up before.

Thus: class matrix has the private variables mv, a pointer to an array of floats, and the two integers rows and cols, which indicate the number of rows and columns in the array. We will do our index calculations explicitly in the methods of matrix and use one-dimensional indexing for actually accessing the elements of mv within the method. To the outside, this is not visible and we’ll always use two-dimensional indexing with range checking.

The methods defined are:

• constructors and a destructor, analogous to those of class vector;

• two functions that return the number of rows and columns of the matrix (note that rowsize should not be read as ‘size of one row’, but ‘size in units of rows’);

• set_size, unimplemented as for vector, left for you as an exercise;

• the two-dimensional indexing operator (), which takes two ints i,j as arguments and returns a reference to the (i,j)-th element. Thus, we won’t use square brackets for indexing: instead of a[i][j] like in C we’ll write a(i,j) like in Fortran. This is an overload of the function call operator () which was not possible in version 1 of C++, but is legal in C++ 2.0. Any operator may be redefined in C++ 2.0, including the comma.

• the quick indexing function elem(i,j), which returns the value of the (i,j)-th element without bounds checking;

• the assignment, addition and subtraction operators, which work analogously to those for vectors;

• two multiplication operators, one for multiplying two matrices, one for multiplying a vector by a matrix from the left;

• the print() function.

The method definitions follow the class declaration, and you should now be able to go through them without much explanation. The matrix*vector operator accesses the data of the vector argument a directly (a.v[j]); it is for this reason that we made matrix a friend of vector. We could have achieved the same result without the friend declaration by using the inline indexing function a.elem(j), but the inline expansion of function is not guaranteed in all implementations.

The Main Program

Using matrix operations in the main program has now become very simple and easy to read. For instance, the statement

 matrix& x = a*c;

will compute the matrix product of a and c (given that the dimensions are correct such that the product can be computed), put the result into a new matrix allocated on the heap and make the reference x point to that matrix. From now on, x can be used whenever an object of type matrix is required; x.print(), for instance, prints the contents of x. The only thing that we have to be careful about is to delete all ‘hidden instances’ explicitly at the end of the block in which they have been created:

 delete &x; delete &f;

The compiler will also issue warnings here, presumably because x and f might not be references to heap objects, and the delete statements might crash at run time.

More complicated statements like

 matrix& x = (a + b)*c;

might leave intermediate results on the heap to which there is no more access. Some sort of a garbage collector would be needed to clean up those objects; I don’t know whether something is planned in that direction. For the time being, you can always break up such lines into multiple statements and assign any intermediate result explicitly to a reference variable, which can be deleted later.

If you run the example - and we include the MPW tool on the source code disk for those who have no C++ compiler available - you’ll notice how instances of vectors and matrices are created and deleted, and how the product matrix A*C automatically comes out the correct size.

In the future, I am planning to implement a whole library of matrix functions in C++; maybe we’ll have a follow-up on this article some time. In the next part of the tutorial, we’ll deal with Mac-style programming, we’ll define a simple application class with an event loop and event handlers.

Apple’s C++

Although I haven’t covered Macintosh-specific details this month, let me just mention the fact that the examples given here were compiled using a test version of the Apple MPW C++ compiler. This compiler is based upon the AT&T C++ Language System, which is a pre-compiler that generates C code from a C++ source. The C code can then be compiled into machine code by any C compiler. This strategy was taken so that the C++ system could be quickly implemented on any machine running C.

The actual version of AT&T C++ is 2.0, and deviates from the description in Bjarne Stroustrup’s book. A number of features have been added, which I have partially covered already. As we encounter them in the course of these tutorials, we’ll learn more about the changes in C++ 2.0 with respect to the book.

Feedback dept.

“Dear Jörg,

Thank you for your interesting article on compilers in August MacTutor. I feel very little attention has been paid to the quality of the code produced by Mac compilers. I have been porting some FORTRAN code using LSF 1.2 to the MacII and have been very embarrassed by IBM’ers when comparing execution speed on their 16MHz 386 machines - due purely to the much better optimization of MS-DOS FORTRAN compilers [Having used Lahey Fortran 77 on a 286 machine, I can only agree with you - jl].

I was also very disappointed when Apple released MPW 3.0 to find that their C compiler produced code significantly slower than the old 2.0 C compiler from Green Hills. For example the old 2.0 compiler ran your benchmarks (as written) in 3.8 (non opt) and 2.8 (opt) secs respectively. Using pointers instead of indexing in the inner loop reduced that to 2.46 secs. Happily one can use the 2.0 compiler as a tool under 3.0 for those time critical routines and mix 2.0 and 3.0 object code as long as you follow certain rules [Summarize those rules for us and write us about it, this is interesting - jl].

I suppose you have had your attention drawn to the bugs in the C code, but just in case

• C arrays index from 0 so you were overwriting memory when addressing index[50][50] in your C routine!

[True! What shall I say except the remarks about learning curves that I made in the beginning ]

• C and Pascal arrays are reversed as compared to FORTRAN. i.e. A(20,30) in FORTRAN should be declared A[30][20] in C. It follows from this that for correct addressing the arrays in the C parameter list should be declared a[][50], not a[50][]. I found that if you correct this then the C non-pointer routines are significantly slowed down even more!

Andrew Cunningham, Mona Vale, NSW, Australia”

[The historical reason for the unsatisfactory optimization of most Macintosh compilers is probably that in the beginning most people were so glad to have any compiler at all that they did not pay much attention to the quality of the code as long as the stuff ran at all. Also, the toolbox calls are always the same, so it doesn’t really matter whether your code is well-optimized or not as long as you mainly use toolbox calls and not doing any involved computations. Hopefully, the impact of the MacII in the scientific/engineering sector is strong enough to create some pressure on compiler writers to provide optimal tools - jl]

On the network:

Date: Fri, 8 Sep 89 10:18:24 CDT

From: “Bob Loewenstein” <rfl@oddjob.uchicago.edu>

To: Langowski%frembl51.bitnet@tank.uchicago.edu

Subject: Neon

I talked briefly with Kriya and it looks like they will put it into the public domain shortly. - Bob

[Very good! We’re all looking forward to it!]

See you again next month.

Listing 1: Matrix operations in C++

#include <String.h>
#include <Stream.h>
#include <StdLib.h>

void error (char* p)
{
 cerr << p << endl;
 exit(1);
}

class vector 
{
 float* v;
 int sz;
 friend matrix;
 
public:
 vector(int);
 vector(vector&); 
 ~vector();
 int size () { return sz; }
 void set_size(int);
 float& operator[](int);
 float elem(int i) { return v[i]; }
 vector& operator= (vector&); // assignment
 float operator* (vector&); // scalar product
 vector& operator+ (vector&); // elementwise addition
 vector& operator- (vector&); // and subtraction
 void print(); 

};

vector::vector (int size)
{
 cout << “constructing vector object” << endl;
 if (size<=0) 
 { v = 0; return; }
 sz = size;
 v = new float[sz];
}

vector::vector (vector& a)
{
 cout << “copying vector object” << endl;
 sz = a.sz;
 v = new float[sz];
 for (register int i=0 ; i<sz ; i++)
 v[i] = a.v[i];
}

vector::~vector ()
{
 cout << “deleting vector object” << endl;
 delete v;
}

float&
vector::operator[] (int i)
{
 if (i<0 || i>= sz) 
 error(“class vector: index out of range”);
 return v[i]; 
}

vector&
vector::operator= (vector& a)
{
 if (a.sz != sz)
 error(“class vector: size mismatch in =”);
 for (register int i=0 ; i<sz ; i++)
 v[i] = a.v[i];
 return a;
}

vector&
vector::operator+ (vector& a)
{
 if (sz != a.sz)
 error(“class vector: size mismatch in +”);
 vector& c = *new vector(sz);
// DON’T USE vector c(sz); 
// this would be destroyed on exiting the method
 for (register int i=0 ; i<sz ; i++)
 c.v[i] = v[i]+a.v[i];
 return c;
}

vector&
vector::operator- (vector& a)
{
 if (sz != a.sz)
 error(“class vector: size mismatch in +”);
 vector& c = *new vector(sz);
 for (register int i=0 ; i<sz ; i++)
 c.v[i] = v[i]-a.v[i];
 return c;
}

float
vector::operator* (vector& a)
{
 if (sz != a.sz)
 error(“class vector: size mismatch in *”);
 float sum = 0;
 for (register int i=0 ; i<sz ; i++)
 sum = sum + v[i]*a.v[i];
 return sum;
}

void
vector::print()
{
 for (int i=0; i<sz-1; i++)
 cout << v[i] << “ | “;
 cout << v[sz-1] << endl;
}

class matrix
{
    float* mv;
 int rows, cols;
  
public:
 matrix(int,int); 
 matrix(matrix&);
 ~matrix();
 int rowsize () { return rows; }
 int colsize () { return cols; }
 void set_size(int,int);
 float& operator()(int,int);
 float elem(int i, int j) { return mv[i*cols + j]; }
 matrix& operator= (matrix&); // assignment
 matrix& operator+ (matrix&); // elementwise addition
 matrix& operator- (matrix&); // elementwise subtraction
 matrix& operator* (matrix&); // matrix product
 vector& operator* (vector&); // matrix*vector
 void print();
};

matrix::matrix (int rowsz, int colsz)
{
 cout << “constructing matrix object” << endl;
 if (rowsz <=0 || colsz <=0) 
 { mv = 0; return; }
 rows = rowsz;
 cols = colsz;
 mv = new float[rows*cols];
}

matrix::matrix (matrix& a)
{
 cout << “copying matrix object” << endl;
 rows = a.rows; cols = a.cols;
 int size = rows*cols;
 mv = new float[size];
 for (register int i=0 ; i<size ; i++)
 mv[i] = a.mv[i];
}

matrix::~matrix ()
{
 cout << “deleting matrix object” << endl;
 delete mv;
}

float&
matrix::operator() (int i, int j) 
{ 
 if (i<0 || i>= rows) 
 error(“class matrix: column index out of range”);
 if (j<0 || j>= cols) 
 error(“class matrix: row index out of range”);
 return mv[i*cols + j]; 
}

matrix&
matrix::operator= (matrix& a)
{
 if ((a.rows != rows) || (a.cols != cols))
 error(“class matrix: size mismatch in assignment”);
 for (register int i=0 ; i<rows*cols ; i++)
 mv[i] = a.mv[i];
 return a;
}

matrix&
matrix::operator+ (matrix& a)
{
 if ((rows != a.rows) || (cols != a.cols))
 error(“class matrix: size mismatch in +”);
 matrix& c = *new matrix(rows,cols);
 for (register int i=0 ; i<rows*cols ; i++)
 c.mv[i] = mv[i]+a.mv[i];
 return c;
}

matrix&
matrix::operator- (matrix& a)
{
 if ((rows != a.rows) || (cols != a.cols))
 error(“class matrix: size mismatch in +”);
 matrix& c = *new matrix(rows,cols);
 for (register int i=0 ; i<rows*cols ; i++)
 c.mv[i] = mv[i]-a.mv[i];
 return c;
}

matrix&
matrix::operator* (matrix& a)
{
 if (cols != a.rows)
 error(“class matrix: size mismatch in *”);
 matrix& c = *new matrix(rows,a.cols);
 for (register int i=0 ; i<rows; i++)
 for (register int j=0 ; j<a.cols; j++)
 {
 register float sum = 0;
 for (register int k=0 ; k<cols; k++)
 sum = sum + elem(i,k)*a.elem(k,j); // elem is faster
 c(i,j) = sum;
 }
 return c;
}

vector&
matrix::operator* (vector& a)
{
 if (cols != a.sz)
 error(“class matrix: size mismatch in *vector”);
 vector& c = *new vector(rows);
 for (register int i=0 ; i<rows; i++)
 {
 register float sum = 0;
 for (register int j=0 ; j<cols; j++)
 sum = sum + elem(i,j)*a.v[j]; 
 c[i] = sum;
 }
 return c;
}

void
matrix::print()
{
 for (int i=0; i<rows; i++)
 {
 for (int j=0; j<cols-1; j++)
 cout << elem(i,j) << “ | “;
 cout << elem(i,cols-1) << endl;
 }
}

int
main(int argc, char* argv[])
{
 cout << “Start main program...” << endl;
 
 int i,j;

 cout << “Defining A and C” << endl; 
 matrix a(3,5);
 matrix c(5,3);
 
 for (i=0; i<3; i++)
 for(j=0; j<5; j++)
 {
 a(i,j) = i + (1.0*j)/10;
 c(j,i) = a(i,j) - 2;
 }

 cout << “Assigning B” << endl;  
 matrix b = a;
 
 cout << “Elements of A:” << endl;
 a.print(); 
 
 cout << “Elements of B:” << endl;
 b.print();
 
 cout << “Elements of C:” << endl;
 c.print();
 
// cout << “Defining X” << endl; 
// matrix x(3,3);
 
 cout << “Multiplying A*C into X” << endl;   
 matrix& x = a*c;
 
 cout << “Elements of A*C:” << endl;
 x.print();
 
 cout << “Defining D” << endl;
 vector d(3);
 for (i=0; i<3; i++)
 d[i] = i*2.75;

 cout << “Defining E” << endl;
 vector e = d;
 
 cout << “Multiplying C*E into F” << endl;   
 vector& f = c*e;
 
 cout << “Elements of D, E, F:” << endl;
 d.print(); e.print(); f.print(); 
 
 a(1,4) = 432.056;
 b = a;
 
 a.print(); b.print();

 delete &x; delete &f;  
 
 cout << “Exiting” << endl;
 return 0;
}

 
AAPL
$501.11
Apple Inc.
+2.43
MSFT
$34.64
Microsoft Corpora
+0.15
GOOG
$898.03
Google Inc.
+16.02

MacTech Search:
Community Search:

Software Updates via MacUpdate

Paperless 2.3.1 - Digital documents mana...
Paperless is a digital documents manager. Remember when everyone talked about how we would soon be a paperless society? Now it seems like we use paper more than ever. Let's face it - we need and we... Read more
Apple HP Printer Drivers 2.16.1 - For OS...
Apple HP Printer Drivers includes the latest HP printing and scanning software for Mac OS X 10.6, 10.7 and 10.8. For information about supported printer models, see this page.Version 2.16.1: This... Read more
Yep 3.5.1 - Organize and manage all your...
Yep is a document organization and management tool. Like iTunes for music or iPhoto for photos, Yep lets you search and view your documents in a comfortable interface, while offering the ability to... Read more
Apple Canon Laser Printer Drivers 2.11 -...
Apple Canon Laser Printer Drivers is the latest Canon Laser printing and scanning software for Mac OS X 10.6, 10.7 and 10.8. For information about supported printer models, see this page.Version 2.11... Read more
Apple Java for Mac OS X 10.6 Update 17 -...
Apple Java for Mac OS X 10.6 delivers improved security, reliability, and compatibility by updating Java SE 6.Version Update 17: Java for Mac OS X 10.6 Update 17 delivers improved security,... Read more
Arq 3.3 - Online backup (requires Amazon...
Arq is online backup for the Mac using Amazon S3 and Amazon Glacier. It backs-up and faithfully restores all the special metadata of Mac files that other products don't, including resource forks,... Read more
Apple Java 2013-005 - For OS X 10.7 and...
Apple Java for OS X 2013-005 delivers improved security, reliability, and compatibility by updating Java SE 6 to 1.6.0_65. On systems that have not already installed Java for OS X 2012-006, this... Read more
DEVONthink Pro 2.7 - Knowledge base, inf...
Save 10% with our exclusive coupon code: MACUPDATE10 DEVONthink Pro is your essential assistant for today's world, where almost everything is digital. From shopping receipts to important research... Read more
VirtualBox 4.3.0 - x86 virtualization so...
VirtualBox is a family of powerful x86 virtualization products for enterprise as well as home use. Not only is VirtualBox an extremely feature rich, high performance product for enterprise customers... Read more
Merlin 2.9.2 - Project management softwa...
Merlin is the only native network-based collaborative Project Management solution for Mac OS X. This version offers many features propelling Merlin to the top of Mac OS X professional project... Read more

Halloween – iLovecraft Brings Frightenin...
Halloween – iLovecraft Brings Frightening Stories From Author H.P. | Read more »
The Blockheads Creator David Frampton Gi...
The Blockheads Creator David Frampton Gives a Postmortem on the Creation Process of the Game Posted by Andrew Stevens on October 16th, 2013 [ permalink ] Hey, a | Read more »
Sorcery! Enhances the Gameplay in Latest...
Sorcery! | Read more »
It Came From Australia: Tiny Death Star
NimbleBit and Disney have teamed up to make Star Wars: Tiny Death Star, a Star Wars take on Tiny Tower. Right now, the game is in testing in Australia (you will never find a more wretched hive of scum and villainy) but we were able to sneak past... | Read more »
FIST OF AWESOME Review
FIST OF AWESOME Review By Rob Rich on October 16th, 2013 Our Rating: :: TALK TO THE FISTUniversal App - Designed for iPhone and iPad A totalitarian society of bears is only the tip of the iceberg in this throwback brawler.   | Read more »
PROVERBidioms Paints English Sayings in...
PROVERBidioms Paints English Sayings in a Picture for Users to Find Posted by Andrew Stevens on October 16th, 2013 [ permalink ] | Read more »
OmniFocus 2 for iPhone Review
OmniFocus 2 for iPhone Review By Carter Dotson on October 16th, 2013 Our Rating: :: OMNIPOTENTiPhone App - Designed for the iPhone, compatible with the iPad OmniFocus 2 for iPhone is a task management app for people who absolutely... | Read more »
Ingress – Google’s Augmented-Reality Gam...
Ingress – Google’s Augmented-Reality Game to Make its Way to iOS Next Year Posted by Andrew Stevens on October 16th, 2013 [ permalink ] | Read more »
CSR Classics is Full of Ridiculously Pre...
CSR Classics is Full of Ridiculously Pretty Classic Automobiles Posted by Rob Rich on October 16th, 2013 [ permalink ] | Read more »
Costume Quest Review
Costume Quest Review By Blake Grundman on October 16th, 2013 Our Rating: :: SLIGHTLY SOURUniversal App - Designed for iPhone and iPad This bite sized snack lacks the staying power to appeal beyond the haunting season.   | Read more »

Price Scanner via MacPrices.net

Apple Store Canada offers refurbished 11-inch...
 The Apple Store Canada has Apple Certified Refurbished 2013 11″ MacBook Airs available starting at CDN$ 849. Save up to $180 off the cost of new models. An Apple one-year warranty is included with... Read more
Updated MacBook Price Trackers
We’ve updated our MacBook Price Trackers with the latest information on prices, bundles, and availability on MacBook Airs, MacBook Pros, and the MacBook Pros with Retina Displays from Apple’s... Read more
13-inch Retina MacBook Pros on sale for up to...
B&H Photo has the 13″ 2.5GHz Retina MacBook Pro on sale for $1399 including free shipping. Their price is $100 off MSRP. They have the 13″ 2.6GHz Retina MacBook Pro on sale for $1580 which is $... Read more
AppleCare Protection Plans on sale for up to...
B&H Photo has 3-Year AppleCare Warranties on sale for up to $105 off MSRP including free shipping plus NY sales tax only: - Mac Laptops 15″ and Above: $244 $105 off MSRP - Mac Laptops 13″ and... Read more
Apple’s 64-bit A7 Processor: One Step Closer...
PC Pro’s Darien Graham-Smith reported that Canonical founder and Ubuntu Linux creator Mark Shuttleworth believes Apple intends to follow Ubuntu’s lead and merge its desktop and mobile operating... Read more
MacBook Pro First, Followed By iPad At The En...
French site Info MacG’s Florian Innocente says he has received availability dates and order of arrival for the next MacBook Pro and the iPad from the same contact who had warned hom of the arrival of... Read more
Chart: iPad Value Decline From NextWorth
With every announcement of a new Apple device, serial upgraders begin selling off their previous models – driving down the resale value. So, with the Oct. 22 Apple announcement date approaching,... Read more
SOASTA Survey: What App Do You Check First in...
SOASTA Inc., the leader in cloud and mobile testing announced the results of its recent survey showing which mobile apps are popular with smartphone owners in major American markets. SOASTA’s survey... Read more
Apple, Samsung Reportedly Both Developing 12-...
Digitimes’ Aaron Lee and Joseph Tsai report that Apple and Samsung Electronics are said to both be planning to release 12-inch tablets, and that Apple is currently cooperating with Quanta Computer on... Read more
Apple’s 2011 MacBook Pro Lineup Suffering Fro...
Appleinsider’s Shane Cole says that owners of early-2011 15-inch and 17-inch MacBook Pros are reporting issues with those models’ discrete AMD graphics processors, which in some cases results in the... Read more

Jobs Board

Senior Mac / *Apple* Systems Engineer - 318...
318 Inc, a top provider of Apple solutions is seeking a new Senior Apple Systems Engineer to be based out of our Santa Monica, California location. We are a Read more
*Apple* Retail - Manager - Apple Inc. (Unite...
Job Summary Keeping an Apple Store thriving requires a diverse set of leadership skills, and as a Manager, you’re a master of them all. In the store’s fast-paced, Read more
*Apple* Solutions Consultant - Apple (United...
**Job Summary** Apple Solutions Consultant (ASC) - Retail Representatives Apple Solutions Consultants are trained by Apple on selling Apple -branded products Read more
Associate *Apple* Solutions Consultant - Ap...
**Job Summary** The Associate ASC is an Apple employee who serves as an Apple brand ambassador and influencer in a Reseller's store. The Associate ASC's role is to Read more
*Apple* Solutions Consultant (ASC) - Apple (...
**Job Summary** The ASC is an Apple employee who serves as an Apple brand ambassador and influencer in a Reseller's store. The ASC's role is to grow Apple Read more
All contents are Copyright 1984-2011 by Xplain Corporation. All rights reserved. Theme designed by Icreon.