dev.gamez.lv Forum Index dev.gamez.lv
Latvian Game Developers Community
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups 

Par nosacijuma faktoru "?"...

 
dev.gamez.lv Forum Index -> Iesācējiem
View previous topic :: View next topic  
Author Message
killyou



Joined: 17 Aug 2006
Posts: 24

PostPosted: Thu Nov 30, 2006 4:28 pm    Post subject: Par nosacijuma faktoru "?"...

Nesen sāku mācīties C++ un lasu LV valoda no J.Zutera kursa matrealiem kur esmu ticis līdz nosacijuma faktoram "?". Lasot viņa rakstīto nespēju iebraukt...
varbūt kāds var palīdzēt saprast? Smile
Back to top
View user's profile
GiGa
Indago Uzvarētājs
Indago Uzvarētājs


Joined: 25 Sep 2003
Posts: 887

PostPosted: Thu Nov 30, 2006 4:45 pm    Post subject:

<nosacījums> ? <izteiksmeA> : <izteiksmeB>;
Ja nosacījums izpildās, tiek izrēķināta un atgriezta izteiksmeA, ja nē, tad izteiksmeB.

Kas tieši nesaprotams?
Back to top
View user's profile Send e-mail
killyou



Joined: 17 Aug 2006
Posts: 24

PostPosted: Thu Nov 30, 2006 4:51 pm    Post subject:

paldies laikam bušu sapratis Smile
Back to top
View user's profile
bubu
Indago Uzvarētājs
Indago Uzvarētājs


Joined: 23 Mar 2004
Posts: 3223
Location: Riga

PostPosted: Thu Nov 30, 2006 4:53 pm    Post subject:

Vienkāršākā gadījumā:
Code:
a = (b ? c : d);

Pieraksts ir ekvivalents ar šo:
Code:
if (b)
{
  a = c;
}
else
{
  a = d;
}
Back to top
View user's profile Send e-mail
killyou



Joined: 17 Aug 2006
Posts: 24

PostPosted: Thu Nov 30, 2006 5:03 pm    Post subject:

tad cik sapratu ? izmanto lai nedaudz saīsinātu sourci.
Back to top
View user's profile
bubu
Indago Uzvarētājs
Indago Uzvarētājs


Joined: 23 Mar 2004
Posts: 3223
Location: Riga

PostPosted: Thu Nov 30, 2006 6:11 pm    Post subject:

Jā, tieši tā.
Back to top
View user's profile Send e-mail
Display posts from previous:   
dev.gamez.lv Forum Index -> Iesācējiem All times are GMT + 2 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2005 phpBB Group