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
$442.93
Apple Inc.
+0.00
MSFT
$35.08
Microsoft Corpora
+0.00
GOOG
$908.53
Google Inc.
+0.00

MacTech Search:
Community Search:

Software Updates via MacUpdate

KeyCue 6.5 - Displays all menu shortcut...
KeyCue helps you to use your OS X applications more effectively. Just hold down the Command key for a while - KeyCue comes to help and shows a table of all currently available keyboard shortcuts.... Read more
Cobook Contacts 1.2.6 - Intelligent addr...
Cobook Contacts is a better address book that makes contact management enjoyable for millions of people every day. Find contacts faster and organize them with tags. Get integrated social profiles... Read more
AppDelete 4.0.7 - Delete your unwanted a...
AppDelete is an uninstaller for Macs that will remove not only applications but also widgets, preference panes, plugins and screensavers along with their associated files. Without AppDelete these... Read more
OnyX 2.6.9 - Maintenance and optimizatio...
OnyX is a multifunctional utility for OS X. It allows you to verify the startup disk and the structure of its System files, to run miscellaneous tasks of system maintenance, to configure the hidden... Read more
Apple iTunes 11.0.3 - Manage your music,...
Apple iTunes lets you organize and play digital music and video on your computer. It can automatically download new music, app, and book purchases across all your devices and computers. And it's a... Read more
Spotify 0.9.0.133. - Stream music, creat...
Spotify is a new way to enjoy music. Simply download and install. Before you know it you'll be singing along to the genre, artist, or song of your choice. With Spotify you are never far away from... Read more
JollysFastVNC 1.46 - Fast VNC client. (S...
JollysFastVNC is a VNC client which aims to become the best VNC client on the Mac. When I started ScreenRecycler I thought that there are enough VNC clients out there to support it. When the program... Read more
Skitch 2.5.2 - Take screenshots, annotat...
Skitch allows you to take screenshots on your Mac, edit them and share them with others. It makes the sharing process seamless by making it a natural workflow to send the image (with edited arrows... Read more
Backblaze 2.1.0.608 - Online backup serv...
Backblaze is an online backup service, available fo $5/month for unlimited storage. With half of the founding team heralding from Apple, Backblaze is deeply committed to the Mac platform. The... Read more
The Cave 1.0.0 - Adventure game featurin...
The Cave is an adventure game that offers a unique blend of fast-paced action, mind-bending puzzles, and winning humor. Assemble your team and embark on a journey into the shadowy underworld. Once... Read more

Tomb Breaker Review
Tomb Breaker Review By Jennifer Allen on May 20th, 2013 Our Rating: :: SIMPLE MATCHINGUniversal App - Designed for iPhone and iPad Tomb Breaker keeps it simple with gameplay just a matter of matching up gems and nothing more. It’s... | Read more »
Jacob Jones And The Bigfoot Mystery Revi...
Jacob Jones And The Bigfoot Mystery Review By Jennifer Allen on May 20th, 2013 Our Rating: Universal App - Designed for iPhone and iPad Charming and cute, Jacob Jones and the Bigfoot Mystery also offers some fun puzzles and... | Read more »
Equilibrium Review
Equilibrium Review By David Rabinowitz on May 20th, 2013 Our Rating: :: PARTICLE PHYSICSiPhone App - Designed for the iPhone, compatible with the iPad Equilibrium is a physics-based puzzler with a unique and innovative story... | Read more »
Gravity Guy 2 Review
Gravity Guy 2 Review By Jennifer Allen on May 20th, 2013 Our Rating: :: STEADY RUNNINGUniversal App - Designed for iPhone and iPad With not much in common with its predecessor, Gravity Guy 2 is a fairly run of the mill Endless... | Read more »
How To: Enable a Passcode to Protect You...
Think about all the important information and communication methods that you have available on your phone. Now think that it’s probably all unprotected if someone nabs your phone. Thankfully, it’s possible to set a passcode lock in order to help... | Read more »
Video Filters Features Over 100 Customiz...
Video Filters Features Over 100 Customizable Video Effects Posted by Andrew Stevens on May 20th, 2013 [ permalink ] | Read more »
Manuganu Review
Manuganu Review By Rob Rich on May 20th, 2013 Our Rating: :: A REAL FUN RUNNERUniversal App - Designed for iPhone and iPad The name might be a mouthful but the incredibly well made runner it’s attached to makes up for it.   | Read more »
Chef Sleeve Keeps Your iPad or iPhone Cl...
Chef Sleeve Keeps Your iPad or iPhone Clean While Cooking In The Kitchen Posted by Andrew Stevens on May 20th, 2013 [ permalink ] The Chef Sleeve | Read more »
Desti Uses AI To Find The Right Hotels a...
Desti Uses AI To Find The Right Hotels and Vacation Activities Posted by Andrew Stevens on May 20th, 2013 [ permalink ] iPad Only App - Designed for the iPad | Read more »
ERA Deluxe Review
ERA Deluxe Review By Rob Rich on May 20th, 2013 Our Rating: :: JACK OF ALL TRADESiPhone App - Designed for the iPhone, compatible with the iPad ERA Defense offers a little something for everybody, so long as they like tower defense... | Read more »

Price Scanner via MacPrices.net

15-inch Retina MacBook Pros on sale for $200 off M...
 B&H Photo has 15″ Retina MacBook Pros on sale for $200 off MSRP including free shipping. B&H will also include free copies of Parallels Desktop, Bento Database, and LoJack for Laptops... Read more
Apple refurbished iPad minis available starting at...
The Apple Store has a full lineup of Apple Certified Refurbished iPad minis available starting at $299 – up to $40 off new models. Apple’s one-year warranty is included with each mini, and shipping... Read more
MacBook Air Inventory Shrinking In Leadup To Apple...
Appleinsider’s Neil Hughes reports that with Intel’s next-generation Haswell processors set to launch in a couple of weeks and Apple’s Worldwide Developers Conference (WWDC) coming next month,... Read more
Battle Of The 13-inch MacBooks: Which One To Buy?
iMore’s Peter Cohen has posted a comparitive profile of Apple’s three current distinct 13-inch display notebook models – the MacBook Air, the MacBook Pro and the MacBook Pro with Retina Display... Read more
Lenovo Launches Yoga 11S Windows 8 Convertible
Lenovo has announced that customers can now place orders for the IdeaPad Yoga 11S on http://www.lenovo.com or pre-order on http:/www.bestbuy.com. The 360 flip and fold Yoga 11S hybrid premiered in... Read more
Apple now offering full line of refurbished iMacs...
Apple has Apple Certified Refurbished 2012 iMacs in stock today for up to $330 off MSRP – 15% off. Each iMac comes with an Apple one-year warranty, and shipping is free: - 21″ 2.7GHz iMac: $1099 $100... Read more
Save up to $200 on MacBooks with Apple Education p...
Purchase a new 2012 MacBook Pro, MacBook Pro with Retina Display, or MacBook Air at The Apple Store for Education and take up to $200 off MSRP. All teachers, students, and staff of any educational... Read more
15″ MacBook Pros (Apple refurbished) in stock star...
The Apple Store has several Apple Certified Refurbished 15-inch MacBook Pros in stock today, with models starting at $1489. Each MacBook Pro comes with Apple’s one-year warranty, and home shipping (... Read more
Save up to $100 on iMacs with Apple Education disc...
Take up to $100 off the price of a new 21″ or 27″ iMac at The Apple Store for Education. All students, teachers, and staff at any educational institution qualify for the discount, and shipping is... Read more
Mac mini Server on sale for $50 off MSRP
B&H Photo has the 2012 Mac mini Server on sale for $949 including free shipping plus NY sales tax only. Their price is $50 off MSRP, and it’s the lowest price available for this model. B&H... Read more

Jobs Board

Class 1 District *Apple* Technician -...
QUALIFICATIONS: High School diploma Associate Degree in Technology preferred. Apple Certified Support Professional Mac OS X 10.5, 10.6, 10.7, 10.8 Apple Certified Read more
*Apple* Infrastructure Engineer II - Ba...
39964 Apple Infrastructure Engineer II Full Time Regular posted 04/22/2013 San Ramon, CA San Francisco, CA Requirements What sets Bank of the West apart from other banks Read more
*Apple* Retail - Manager - Apple (Unite...
Job SummaryKeeping an Apple Store thriving requires a diverse set of leadership skills, and as a Manager, youre a master of them all. In the stores fast-paced, dynamic Read more
*Apple* At-Home Team Manager - Apple (U...
Changing the world is all in a day's work at Apple . If you love innovation, here's your chance to make a career of it. You'll work hard. But the job comes with more than Read more
*Apple* Retail - Manager - Apple Inc. (...
Job SummaryKeeping 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, dynamic Read more
All contents are Copyright 1984-2011 by Xplain Corporation. All rights reserved. Theme designed by Icreon.