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;
}

 

Community Search:
MacTech Search:

Software Updates via MacUpdate

Latest Forum Discussions

See All

Whitethorn Games combines two completely...
If you have ever gone fishing then you know that it is a lesson in patience, sitting around waiting for a bite that may never come. Well, that's because you have been doing it wrong, since as Whitehorn Games now demonstrates in new release Skate... | Read more »
Call of Duty Warzone is a Waiting Simula...
It's always fun when a splashy multiplayer game comes to mobile because they are few and far between, so I was excited to see the notification about Call of Duty: Warzone Mobile (finally) launching last week and wanted to try it out. As someone who... | Read more »
Albion Online introduces some massive ne...
Sandbox Interactive has announced an upcoming update to its flagship MMORPG Albion Online, containing massive updates to its existing guild Vs guild systems. Someone clearly rewatched the Helms Deep battle in Lord of the Rings and spent the next... | Read more »
Chucklefish announces launch date of the...
Chucklefish, the indie London-based team we probably all know from developing Terraria or their stint publishing Stardew Valley, has revealed the mobile release date for roguelike deck-builder Wildfrost. Developed by Gaziter and Deadpan Games, the... | Read more »
Netmarble opens pre-registration for act...
It has been close to three years since Netmarble announced they would be adapting the smash series Solo Leveling into a video game, and at last, they have announced the opening of pre-orders for Solo Leveling: Arise. [Read more] | Read more »
PUBG Mobile celebrates sixth anniversary...
For the past six years, PUBG Mobile has been one of the most popular shooters you can play in the palm of your hand, and Krafton is celebrating this milestone and many years of ups by teaming up with hit music man JVKE to create a special song for... | Read more »
ASTRA: Knights of Veda refuse to pump th...
In perhaps the most recent example of being incredibly eager, ASTRA: Knights of Veda has dropped its second collaboration with South Korean boyband Seventeen, named so as it consists of exactly thirteen members and a video collaboration with Lee... | Read more »
Collect all your cats and caterpillars a...
If you are growing tired of trying to build a town with your phone by using it as a tiny, ineffectual shover then fear no longer, as Independent Arts Software has announced the upcoming release of Construction Simulator 4, from the critically... | Read more »
Backbone complete its lineup of 2nd Gene...
With all the ports of big AAA games that have been coming to mobile, it is becoming more convenient than ever to own a good controller, and to help with this Backbone has announced the completion of their 2nd generation product lineup with their... | Read more »
Zenless Zone Zero opens entries for its...
miHoYo, aka HoYoverse, has become such a big name in mobile gaming that it's hard to believe that arguably their flagship title, Genshin Impact, is only three and a half years old. Now, they continue the road to the next title in their world, with... | Read more »

Price Scanner via MacPrices.net

B&H has Apple’s 13-inch M2 MacBook Airs o...
B&H Photo has 13″ MacBook Airs with M2 CPUs and 256GB of storage in stock and on sale for up to $150 off Apple’s new MSRP, starting at only $849. Free 1-2 day delivery is available to most US... Read more
M2 Mac minis on sale for $100-$200 off MSRP,...
B&H Photo has Apple’s M2-powered Mac minis back in stock and on sale today for $100-$200 off MSRP. Free 1-2 day shipping is available for most US addresses: – Mac mini M2/256GB SSD: $499, save $... Read more
Mac Studios with M2 Max and M2 Ultra CPUs on...
B&H Photo has standard-configuration Mac Studios with Apple’s M2 Max & Ultra CPUs in stock today and on Easter sale for $200 off MSRP. Their prices are the lowest available for these models... Read more
Deal Alert! B&H Photo has Apple’s 14-inch...
B&H Photo has new Gray and Black 14″ M3, M3 Pro, and M3 Max MacBook Pros on sale for $200-$300 off MSRP, starting at only $1399. B&H offers free 1-2 day delivery to most US addresses: – 14″ 8... Read more
Department Of Justice Sets Sights On Apple In...
NEWS – The ball has finally dropped on the big Apple. The ball (metaphorically speaking) — an antitrust lawsuit filed in the U.S. on March 21 by the Department of Justice (DOJ) — came down following... Read more
New 13-inch M3 MacBook Air on sale for $999,...
Amazon has Apple’s new 13″ M3 MacBook Air on sale for $100 off MSRP for the first time, now just $999 shipped. Shipping is free: – 13″ MacBook Air (8GB RAM/256GB SSD/Space Gray): $999 $100 off MSRP... Read more
Amazon has Apple’s 9th-generation WiFi iPads...
Amazon has Apple’s 9th generation 10.2″ WiFi iPads on sale for $80-$100 off MSRP, starting only $249. Their prices are the lowest available for new iPads anywhere: – 10″ 64GB WiFi iPad (Space Gray or... Read more
Discounted 14-inch M3 MacBook Pros with 16GB...
Apple retailer Expercom has 14″ MacBook Pros with M3 CPUs and 16GB of standard memory discounted by up to $120 off Apple’s MSRP: – 14″ M3 MacBook Pro (16GB RAM/256GB SSD): $1691.06 $108 off MSRP – 14... Read more
Clearance 15-inch M2 MacBook Airs on sale for...
B&H Photo has Apple’s 15″ MacBook Airs with M2 CPUs (8GB RAM/256GB SSD) in stock today and on clearance sale for $999 in all four colors. Free 1-2 delivery is available to most US addresses.... Read more
Clearance 13-inch M1 MacBook Airs drop to onl...
B&H has Apple’s base 13″ M1 MacBook Air (Space Gray, Silver, & Gold) in stock and on clearance sale today for $300 off MSRP, only $699. Free 1-2 day shipping is available to most addresses in... Read more

Jobs Board

Medical Assistant - Surgical Oncology- *Apple...
Medical Assistant - Surgical Oncology- Apple Hill Location: WellSpan Medical Group, York, PA Schedule: Full Time Sign-On Bonus Eligible Remote/Hybrid Regular Apply Read more
Omnichannel Associate - *Apple* Blossom Mal...
Omnichannel Associate - Apple Blossom Mall Location:Winchester, VA, United States (https://jobs.jcp.com/jobs/location/191170/winchester-va-united-states) - Apple Read more
Cashier - *Apple* Blossom Mall - JCPenney (...
Cashier - Apple Blossom Mall Location:Winchester, VA, United States (https://jobs.jcp.com/jobs/location/191170/winchester-va-united-states) - Apple Blossom Mall Read more
Operations Associate - *Apple* Blossom Mall...
Operations Associate - Apple Blossom Mall Location:Winchester, VA, United States (https://jobs.jcp.com/jobs/location/191170/winchester-va-united-states) - Apple Read more
Business Analyst | *Apple* Pay - Banco Popu...
Business Analyst | Apple PayApply now " Apply now + Apply Now + Start applying with LinkedIn Start + Please wait Date:Mar 19, 2024 Location: San Juan-Cupey, PR Read more
All contents are Copyright 1984-2011 by Xplain Corporation. All rights reserved. Theme designed by Icreon.