473,657 Members | 2,423 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

STL.NET news

Any more info on this? Anyone know when it will be released?
Feb 1 '06 #1
20 1808
"Andrew Roberts" <Mu******@nospa m.nospam> wrote in message
news:%2******** **********@TK2M SFTNGP10.phx.gb l...
Any more info on this? Anyone know when it will be released?


Stay tuned - there is some news, but we're waiting for feedback from the
VC++ team as to what can be said publicly.

-cd
Feb 1 '06 #2

"Andrew Roberts" <Mu******@nospa m.nospam> wrote in message
news:%2******** **********@TK2M SFTNGP10.phx.gb l...
Any more info on this? Anyone know when it will be released?

Looks to me like it's dead in the water. No hint of a release date. The
dreadful version accidently included in beta 2 pointed to some serious
issues. Tis a pity because C++ is next to useless without it's standard
library.

-Liam


Feb 6 '06 #3

"rellik" <no****@goaway. net> wrote in message
news:mc******** ***********@new sfe6-win.ntli.net...
|
| "Andrew Roberts" <Mu******@nospa m.nospam> wrote in message
| news:%2******** **********@TK2M SFTNGP10.phx.gb l...
| > Any more info on this? Anyone know when it will be released?
| >
|
|
| Looks to me like it's dead in the water. No hint of a release date. The
| dreadful version accidently included in beta 2 pointed to some serious
| issues. Tis a pity because C++ is next to useless without it's standard
| library.
|
|

This has nothing to do with STL and C++, it's about STL/CLR and C++/CLI.

Willy.

Feb 6 '06 #4
Andrew Roberts wrote:
Any more info on this? Anyone know when it will be released?


http://blogs.msdn.com/nikolad/archiv...07/527193.aspx

-cd
Feb 8 '06 #5
Carl Daniel [VC++ MVP] wrote:
http://blogs.msdn.com/nikolad/archiv...07/527193.aspx


So it looks as though we'll have to wait till the next version of VS
before we get STL/CLR. *SIGH* But at least its better late then never! :)

-Don Kim
Feb 9 '06 #6

"Willy Denoyette [MVP]" <wi************ *@telenet.be> wrote in message
news:uo******** ******@tk2msftn gp13.phx.gbl...

"rellik" <no****@goaway. net> wrote in message
news:mc******** ***********@new sfe6-win.ntli.net...
|
| "Andrew Roberts" <Mu******@nospa m.nospam> wrote in message
| news:%2******** **********@TK2M SFTNGP10.phx.gb l...
| > Any more info on this? Anyone know when it will be released?
| >
|
|
| Looks to me like it's dead in the water. No hint of a release date. The
| dreadful version accidently included in beta 2 pointed to some serious
| issues. Tis a pity because C++ is next to useless without it's standard
| library.
|
|

This has nothing to do with STL and C++, it's about STL/CLR and C++/CLI.

Willy.


Sorry Willy I'll rephase. Tis a pity because because C++/CLI is next to
useless without the ability to use managed types with the standard library.

-Liam
Feb 12 '06 #7

"rellik" <no****@goaway. net> wrote in message
news:qm******** ***********@new sfe7-win.ntli.net...
|
| "Willy Denoyette [MVP]" <wi************ *@telenet.be> wrote in message
| news:uo******** ******@tk2msftn gp13.phx.gbl...
| >
| > "rellik" <no****@goaway. net> wrote in message
| > news:mc******** ***********@new sfe6-win.ntli.net...
| > |
| > | "Andrew Roberts" <Mu******@nospa m.nospam> wrote in message
| > | news:%2******** **********@TK2M SFTNGP10.phx.gb l...
| > | > Any more info on this? Anyone know when it will be released?
| > | >
| > |
| > |
| > | Looks to me like it's dead in the water. No hint of a release date.
The
| > | dreadful version accidently included in beta 2 pointed to some serious
| > | issues. Tis a pity because C++ is next to useless without it's
standard
| > | library.
| > |
| > |
| >
| > This has nothing to do with STL and C++, it's about STL/CLR and C++/CLI.
| >
| > Willy.
| >
| >
| >
|
| Sorry Willy I'll rephase. Tis a pity because because C++/CLI is next to
| useless without the ability to use managed types with the standard
library.
|
| -Liam
|
|

Why? they are just wrappers around the managed containers available in the
framework. IMO they offer little added value.

Willy.


Feb 12 '06 #8
|
| Sorry Willy I'll rephase. Tis a pity because because C++/CLI is next to
| useless without the ability to use managed types with the standard
library.
|
| -Liam
|
|

Why? they are just wrappers around the managed containers available in the
framework. IMO they offer little added value.

Willy.

Oh I don't know. Just say you're a C++ programmer. Which means you make
extensive use of the standard library. Say you'd like use a fairly standard
container, probably the most common after vector - the set. Yeah, say you'd
like to have a set of strings. Is there a set in the
System.Collecti ons.Generic namespace? Nope.

-Liam
Feb 12 '06 #9
Willy Denoyette [MVP] wrote:

Sorry Willy I'll rephase. Tis a pity because because C++/CLI is next
to useless without the ability to use managed types with the
standard library.

-Liam


Why? they are just wrappers around the managed containers available
in the framework. IMO they offer little added value.


No, they're not. The STL/CLR containers are managed implementations of the
STL containers and are not wrappers over List<T> or any other framework
class. They do support many of the framework interfaces (IEnumerable<T> ,
etc) to make interoperation easier, but they're definitely not wrappers.

The reason why they're desirable is for use with the rest of the C++
standard library. In my own work, I particularly miss having well defined
complexity guarantees (that STL provides, but the BCL is very sketchy
about), and the ability to mix and match algorithms and containers. After
using STL containers and algorithms, the BCL classes are a like taking a 10
year step backwards - they're representative of state of the art C++
practice in the early to mid 90's.

Even something as simple as upper_bound/lower_bound is missing from the BCL
classes. Yes, List<T> does provide BinarySearch, but it's a wierd
implementation that usually requires some tweaking of the return value
before use (e.g. binary complement, test/increment, test/decrement). If
they'd simply provided lower_bound and upper_bound it'd be much easier to
use.

-cd
Feb 12 '06 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
5285
by: Cergon | last post by:
hi, i hope someone can help. Im pretty new to this php stuff and i have a slight problem. I have this script (shown below) which writes data to a text file which is then displayed on my front page. Trouble is after moving to an apache server with php on a windows platform the script no longer works. It worked fine on the unix platform. All it does now is just wipes the text file and does not write anyhing else to it, any help would be...
0
1467
by: Jonathan M. Rose | last post by:
I am looking for a script that I can sit on an HTML server (Linux, Apache, PHP/Perl/Python/Etc.) that will allow me to do the following things: 1) Post news articles that consists of (i) a title and (ii) a body. 2) Show the last X posts (or, better yet, just the last X titles) on a home page. 3) Show all posts on a "news" page. 4) When a news article is posted, email the news article (with the title being the email subject and the news...
3
2210
by: Lad | last post by:
I have a program that can send posts to a news server.The problem is that I must find a free usenet(news) server that allows posting, which is not easy. For this reason I would like to make a modification in my program so that the program can act in a similar way how real news server, that is to spread the new posts to another news server. But I do not have much knowledge about the way how news server chooses another news server to send...
6
3443
by: Zhang Le | last post by:
Hello, I'm writing a little Tkinter application to retrieve news from various news websites such as http://news.bbc.co.uk/, and display them in a TK listbox. All I want are news title and url information. Since each news site has a different layout, I think I need some template-based techniques to build news extractors for each site, ignoring information such as table, image, advertise, flash that I'm not interested in. So far I have...
9
1267
by: Arjen | last post by:
Hello, I'm using a datagrid for a news module. The datagrid only displays the news title, date and header. (this is allready working) Now I want to make the title clickable... if you click on it you will see the complete news message. When you see the complete news message you don't see the datagrid anymore. In the news message you can click on a link with a text "back"... once you
10
2556
by: Krakatioison | last post by:
I realized I am an idiot. Whole saturday wasted on this crazy regex crap, I can't even look at it anymore...uff Honestly, I am even willing to pay to someone who is able to solve this. Please help, I really used all my knowledge on this and I cannot get it to work. Let me explain: I need to parse, URL , URL TEXT and DESCRIPTION TEXT from GOOGLE NEWS.
1
2183
by: andyt_2000_uk | last post by:
Hi guys, having a little trouble working out how i'm going to do this. At the moment, users can log in and click a link to add news. This opens a page to enter the message and submit it to the database. These are then shown on the homepage. Questions are how can i go about letting the users edit or delete the messages? I think i need to add a link to the messages with the newsID that the users can then click to select that message....
0
1653
by: Gawn | last post by:
Dear all, Greeding from Thailand. Need help for my news script. I am trying to display news which keywords match the current page keywords. I am using Dreamweaver 8 and PhpMyAdmin to manage MySQL. May I explain you what I have done. My database and data in that look like this. //* Data Base -- phpMyAdmin SQL Dump -- version 2.6.2-pl1 -- http://www.phpmyadmin.net --
9
3982
by: Mike | last post by:
I want to create a news/stock/sport ticker for my desktop. I want to have the ability to select my news source, (cnn, msnbc, etcs) sport source(espn, nfl, nba, etc) and my stock source (nasdaq, nyse, etc) then once that information is selected store it in a XML file, then have my ticker read that XML file to determine what service to use. I would like this to show the information for 10 seconds or so (just the headlines) then scroll UP...
7
1683
by: Smurfas | last post by:
Hi, I write News Script: Write news skript, but how maket that - Whent I push "Read Full News" show full news? Some like that: http://blogs.msdn.com/ Sorry, for bad English My script protected void Button1_Click(object sender, EventArgs e)
0
8306
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
1
8503
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8605
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
7327
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6164
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5632
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4152
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
2726
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
1615
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.