`
netatomy
  • 浏览: 46867 次
  • 性别: Icon_minigender_1
  • 来自: 南京
社区版块
存档分类
最新评论

BDNradio: Chat room log of live chat with Danny Thorpe on Delphi 2005 - by John Kaster

 
阅读更多
BDNradio: Chat room log of live chat with Danny Thorpe on Delphi 2005 - by John Kaster

<!-- Vignette StoryServer 4 Tue Dec 14 17:03:10 2004 -->Rating: <!-- Vignette StoryServer 4 Tue Dec 14 03:08:16 2004 -->Rating is 1.5 - 2.5 Ratings:52 Rate it
<!-- end of rating summary component-->
Abstract: Danny talked about Delphi language and run-time library improvements, .NET and Win32 support

This is a log of the chat rooms during the live audio chat from November 19, 2004 on Delphi 2005 with Danny Thorpe , a Borland Chief Scientist, and architect of the Delphi compilers. Danny discusses changes and enhancements to the Delphi Win32 and Microsoft.NET compilers, the run time framework, and .NET support in general.

Note: This log is only the chat room transcript. There is much additional information covered in the audioreplay that is not available in this chat log. For all previous and upcoming live chats, see http://bdntv.borland.com/chat.html.

VIP Lounge transcript

dthorpe: who was supposed to bring the propeller?
aohlsson: Hehe!
dthorpe: mm refactoring good
aohlsson: Yes, is it good?
aohlsson: Careful. You抣l break this chat client...
aohlsson: :)
dthorpe: mrbtrieve gets first post!
aohlsson: We know! :)
aohlsson: Hi! Cobolman!
aohlsson: Sprite!
dthorpe: and davidf!
jkaster: reminder: use /ask to submit questions
jkaster: thanks for the heads up on the picture behavior. will fix that for next chat (checked, and it's a browser settings issue, not a chat room issue)
jkaster: futurix : "Danny, for... in works for all types? Arrays? Collections? (in Win32 I mean)" - Win32 follows same rules for GetEnumerator. VCL has been updated to support this, for example. Arrays, multi-dimensional arrays, strings, sets, classes that implement the pattern.
jkaster: cobolman : "can you change an object surfaced in a for ... in loop?" - no. the element returned by a collection enumerator needs to be read only for optimization reasons. the state of the collection should not changed as a result of enumerating it. furthermore, enumerators do not guarantee order. You can modify an object returned by an enumerator, but not modify it in a way that will change its iteration order, but the exception might not always be raised for that condition. CLS specifies this as a failure condition.
jkaster: serge_d : "Can you expand TCollection to an IInterface (ICollection) to make it similar to .Net" - yes, it could be done, but my concern is about overhead to TList and collections, which are currently very lightweight. Will continue investigating this.
jkaster: drbob42: "what about token collisions (the same type in multiple units - but same namespace)?" - that is a new risk in Delphi 2005 because you have multiple units with separate name scopes. Generally, that?a bad idea to do, but it抯ok. When you compile those two units into a .NET assembly, the units w/ the same type and same name are forbidden by .NET. The compiler doesn抰 currently catch duplicate names across different units in .NET. Best way to find those is using PEVerify currently.
jkaster: JonR : "Are there compiler hints when the compiler "chooses" not to inline?" - Te compiler will hint when you ask for something to be inlined but it won抰 by the compiler
jkaster: leopasta : "Can we set an option so that the compiler will evaluate every function of a project, trying to inline it?" - yes, there抯 a complier directive called $inline with 3 states: on, off, auto
jkaster: Tjipke : "How to get rid of these inline hints?" - turn inline off or turn hints off
jkaster: drbob42: "is there a way to see if it was inlined or not?" - there抯 no simple indicator. hoping for color difference for dot indicator for debugger in the future
jkaster: JonR : "But what about Win32 API wrappers in Windows.pas? Wouldn抰 this be a huge benefit?" - yes, it is and we have!
jkaster: JonR : "My bad, there are many API wrappers that aren抰 inlined in Windows.pas. I guess someone has already figured out reasons for these not to be inlined." - thanks for the followup
aohlsson: We turned off all cell phones. Forget about the landline... LOL!
jkaster: edan, use /ask to submit questions for danny to answer
jkaster: MrBtrieve: "For all of us non-.NET heads, what is Borland抯 long-term plan and/or commitment to keeping (and hopfully enhancing) the Win32 version of Delphi post Delphi2005?" - the plan is to continue to develop Win32 for the compiler and IDE, primarily a lot of productivity work for the IDE
jkaster: drbob42: "will the Kylix compiler be upgraded to the same Win32/.NET language features?" ?We抮e working on the Kylix compiler plan. There is strong interest in updating Kylix, but nothing I can say for sure about Kylix compiler plans. Main focus is bringing platform support up to latest Linux OS levels.
jkaster: futurix : "Inevitable question ;-) any chance of native Delphi for Win64?" - Which 64bit platform? We抮e certainly still considering this and analyzing costs involved.
jkaster: cobolman : "Is there significant overhead to using interfaces in Win32?" - the overhead is exactly the same as what it抯 been all along, including support for addref and thread safety
jkaster: cobolman : "any chance of getting an expanded case statement to allow things like string items?" - In .NET that抯 a possibility using its string tokenizer. We would make the strings case sensitive
jkaster: mnk : "What priority have Generics?" - #1 for .NET 2.0
jkaster: MrBtrieve: "What is the status of Delphi for .NET apps and compatibility with products such as Mono?"> - We don抰 actively test on mono, but we actively recruit field testers who are familiar with mono. last I heard, the Delphi for .NET compilers produce .NET applications that will execute on mono
jkaster: Leonel : "Is there a chance that Mono could be a supported platform in the future?" - the multi-personality IDE certainly opens up the door for plug-ins for things like this. CrossKylix is something you might want to look at as well.
jkaster: JoeH : "any signs of MS making it easier for Delphi to have CF ?" - we抮e working on this. targetting 2006
jkaster: webcab : "Any plans to extend
Delphi 抯 support for COM (i.e. #import, 2 dim arrays wrappers) ?" - not planning on significant new investment on win32 com
jkaster: serge_d : "Do you plan to sync component list between .Net/Win32 and VS.Net (HelpProvider, ToolTip, NotifyIcon, ErrorProvider)" - ask allen bauer during his chat
jkaster: serge_d : "How ready D2005 for .Net 2.0?" - answered
aohlsson: emisosa : "re unicode, what happens with the .pas file format?" - handled
jkaster: serge, I don抰 understand your questions
aohlsson: leopasta : "Do you have any plan to remove p/Invoke dependency from VCL.Net in order to be compatible with Mono?" - no.
aohlsson: edan : "What is involved in moving a VCL (that extensively uses Win32 API calls) to a .NET assembly?" - handled
aohlsson: bfierens : "any progress,news,sight on pocketpc development" - handled earlier
jkaster: abauer : "hey I hear my name being bantered around!" - that抯 just a voice in your head, Allen
aohlsson: serge_d : "Will .Net 2.0 leverage CF support for D2005?" - handled earlier
jkaster: MaxOdenda : "I like the idea of having multiple personalities, what are your plans about including Kylix/Crosskylix/CLX into Delphi 2005 ?" - answered
aohlsson: Leonel : "How do you weight codegen improvements against new features when planning future development? I mean, how important is an optimizing compiler for you, in the big picture?" - handled
aohlsson: Max, use /ask...
jkaster: MrBtrieve : "Granted its a small sample, but i抳e heard from one user of Delphi 2005 that the IDE is "slow", specifically when switching between a form and unit, on the scale of 2-3 seconds. is this true? Additionally he stated that when using the 慶lassic?floating window IDE mode, CPU usage skyrockets. Comments?" - this is a great question for Allen抯 chat. Watch EventCentral http://ec.borland.com for announcements of his chat
jkaster: futurix : "Are there any changes for non-database VCL in Delphi 2005? New components?" - yes, there are. good question for Seppy Bloom抯 chat. Watch EventCentral for it
jkaster: livechat : "Working with records in .NET is much faster than with objects. Record types have been also greatly expanded in the recent versions of Delphi. Do you generally recommend using records over objects whenever possible?" - records in .NET are value types. You have to be careful in that assertion of performance gain because data gets copied all over the place.
jkaster:
Tjipke: "Even adding system.io doesn抰 remove the inline hint" - ok, we抣l have to look at that!
aohlsson: Leonel : "Any plans to include Design by Contract in the Delphi language?" - answered
jkaster: Tjipke : "what is the use of the hint: "[Hint] CB4Tables.pas(949): H2443 Inline function 慐xtractFileName?has not been expanded because unit 慡ystem.IO?is not specified in USES list" ExtractFileName doesn抰 even come from system.io!" - no. the element returned by a collection enumerator needs to be read-only for optimization reasons. the state of the collection should not changed as a result of enumerating it. furthermore, enumerators do not guarantee order. You can modify an object returned by an enumerator, but not modify it in a way that will change its iteration order, but the exception might not always be raised for that condition. CLS specifies this as a failure condition.
aohlsson: UnitOOPS : "horrified at the idea of even thinking about inlining. Comment?" - handled
jkaster: Tjipke: "(inline continued..) it does remove the warning when it is added to the implementation uses clause (not interface), but what if you change the implementation of extractfilename using not system.io but something else: all units that have added the system.io now need the other namespace... looks very bad to me (but no need really to handle here)" - please follow-up on the newsgroups for this. we抮e actually past time to quit
aohlsson: domus : "Have any internal benchmarks been executed to compare Delphi.NET applications to their Win32 equivalents?" - handled
aohlsson: serge_d : "D2005 and .Net 2.0/ASP2.0 support plans" - Great question for the upcoming chat with Jim & Steve regarding ASP.NET. Stay tuned.
jkaster: MaxOdenda : "I loved the demo from John Kaster about Together technology. Any chance we get this in a
Delphi release?" - Together for Delphi is one of the wishlist items we have for the near future. ECO actually uses the Together design surfaces. More should come in the future.
aohlsson: webcab: "In Delphi for .NET, COM; we're not sure what the best way to send and to receive two-dimensional safe arrays to COM methods is?" - Let抯 schedule a chat with Chris Bensen!
aohlsson: MrBtrieve : "Why, oh why, did you go and change our good old friend the tabbed-component palette?" - Perfect question for Allen or Corbin. Check EventCentral soon.
jkaster: emisosa : "maybe i should ask this to MS, but what happened with OpenGL or DirectX in .NET? is there anything on the VCL in D2005?" - DirectX is already available in .NET directly. OpenGL is a pet project of Danny抯, and there were some issues that prevented getting it into managed code in time for this release.
jkaster: question about Web Services and SOAP
jkaster: tsool : "I heard you were using the Virtual Tree View in D2005. Any chance you might it make available as a component for the D2005 users for use in .NET?" - ask corbin or seppy in their chat
aohlsson: Worried about what, Julian?
jkaster: JonR : "It seems someone from the dev team mentioned that Microsoft has prohibited Borland from officially supporting mono. Is that the accurate?" - not correct. That would be a violation of US Federal law for MS to attempt to prohibit Borland from doing this.
dthorpe: tjipke: vacation, family, then work. :P

Public chat room transcript

Welcome to the moderated Borland Community Chat!
You are allowed to speak freely with everyone in this lower window. In the upper window you'll find all messages written by moderators and invited speakers. To submit a question, click on the ASK Button.
Press the HELP Button for help on advanced commands.

funkyfred: hi all
Anders: Hi Fred!
funkyfred: hi
funkyfred: VIP Lounge? Public Chat?
funkyfred: :-)
MrBtrieve: hello
MrBtrieve: 10-4
MrBtrieve: coffee?
MrBtrieve: Gates
DavidF: Got my cup
MrBtrieve: returns
UnitOOPS: Refactoring, eh?
UnitOOPS: Btw...is this the volume level we can expect?
UnitOOPS: Btw...I use "UnitOOPS" since my real name breaks lots of stuff
UnitOOPS: Jim O払rine
UnitOOPS: (O払rien)
UnitOOPS: Right.
MrBtrieve: YAY
MrBtrieve: i抦 #1
serge_d: hi, I hear you guys
serge_d: ;o)
serge_d: when do you plan to release first update for D2005?
iman: lol serge
cobolman: hi all
cobolman: Pepseye?
MrBtrieve: French mineral water
DavidF: Wow! All these high-tech dudes (MrBetrieve, Cobolman)!!
serge_d: nothing illigal at work (drinks)?
cobolman: Hey Anders - nice to see you - haven抰 seen you in the ngs for a while
cobolman: yup - that抯 me
MrBtrieve: i am hi-tech
DavidF: Hi Danny
cobolman: Hi All - how long until you officially start?
iman: no
cobolman: Nope - connecting was easy
AndiS: no problem
bmcgee: No problems connecting here
serge_d: nop, nice sound too
DavidF: wadda mean Cobolman. This is it. chat away!
MrBtrieve: when you pasted a link in the chat, clicking on taht should open a new browser.
leopasta: ok from here
bmcgee: Missed the Cobol thing, though
iman: roomkey needs to be bold and underline
cobolman: OK great - time to get some caffeine
drbob42: no problem here - good sound
cobolman: Hey Dr Bob - got your hat on?
iman: yes
drbob42: no hat anymore ;-)
iman: :)
cobolman: WHAT! That Mark Miller .... <g>
DavidF: How we supposed to recognize yoou without the hat Dr Bob?
drbob42: I just turned 40 a few days ago...
cobolman: Bloody yougster ;-)
drbob42: old feller...
drbob42: thanks
leopasta: hey, this was a good example of a kylix app ;) It is good to see you are using it :)
MrBtrieve: kylix? what抯 that?
cobolman: G抎ay
futurix: Hello there!
serge_d: a little louder please! ;o)
cobolman: That must be a safe harbour statement <vbg>
drbob42: Danny, you rock!
serge_d: PS. Click on a picture replaced current page, which then lead to clear chat
JonR: Picture opened a new page for me... IE6
maxrf: not for me IE6
serge_d: PS.2. We see a lot of people rejoining, so ...
futurix: Firefox rules! ;-) I opened it in a tab
cobolman: Firefox here too - works great
mnk: test
sGingter: Hello
sGingter: makes sense :)
drbob42: and stringlists
futurix: Thank you! :-)
mnk: dr.bob is here!
drbob42: where else would I be? <g>
mnk: what means 42?
drbob42: the object pointer cannot be changed, but the properties can!
drbob42: but you can change the properties. I have an example...
Brion: did someone remember to start the transcript recorder?
livechat: Can we see the questions that have been asked already?
drbob42: hmm, ok - thanks for the warning then ; )
cobolman: OK - thanks for that answer. Quite a bit to it :-) Seems similar to C#
MrBtrieve: keep them lightweight please!
serge_d: (ICollection) Why? Can we get just accessor interface
JonR: Someone could create a TInterfacedCollection?
Wizardiii: I have heard some of you have missed the audio portion. If you don抰 hear danny goto:
Wizardiii inserts the following link: http://bdntv.borland.com/chat.html
serge_d: I have one. Exactly from a standpoint of accessor (available in DS Plug-in framework)
serge_d: I can post TInterfacedCollection to binaries for D2005 (could be included somewhere?)
JonR: How about posting to CodeCentral?
serge_d: OK, will do
serge_d: still would prefer to see it in base class...
JonR: I抎 prefer a separate class, so TCollection doesn抰 have the overhead (the same reason there is a TInterfaceList, TObjectList, etc)
serge_d: then you will need to reintroduce TCollection editors and classes for existing components
JonR: If TInterfacedCollection could drive from TCollection, shouldn抰 existing editors work?
MrBtrieve: does multi-unit namespaces have any effect on win32 projects?
drbob42: no
Wizardiii: Ask questions using the Ask Button.
MrBtrieve: <== .NET clueless
MrBtrieve: sorry
Wizardiii: then they show up above ;-)
MrBtrieve: my mistake
JonR: Danny抯 comments don抰 represent Borland抯 opinion, so D9 works for me. :)
serge_d: to JinR, yes...
MrBtrieve: "vb code" hehehe
emisosa: function inlinining.. finally! :)
JonR: Very very useful for API wrappers too...
drbob42: yes, I would like to see that hint ; )
JonR: As long as we can turn it off :-P
drbob42: you can always uncheck all hints ;-)
emisosa: heheh
domus: Salut, Bruno.
bfierens: hi all
domus: <- Dominique
emisosa: good one jkaster :)
emisosa: sorry, i meant , good one Tjipke.. :P
Tjipke: thx
leopasta: It would be extremelly useful to know when a function could be inlined by the compiler
drbob42: So finally I can use my Klingon (Unicode) identifiers!
Wizardiii: lol
drbob42: no Klingon properties! Do択aH!
emisosa: :D
domus: "Honey, I抦 in the middle of a meeting"
edan: What is involved in moving a VCL (that extensively uses Win32 API calls) to a .NET assembly?
leopasta: LOL
cobolman: Someone asked about 64bit! Who did that? Own up! Come on :-)
serge_d: Delphi 200x and WindowsXP/2003 extensions (GUI) - getting Windows XP logo compliance for generated aps cobolman: Dennis? Are you in here? Will? : )
_zzorro: No it wasn抰 Dennis....
cobolman: Yeah - I see it was futurix
leopasta: .Net is the overhead on using .Net interfaces :)
cobolman: Thanks for these answers guys - I appreciate it.
DonS: generic generics?
drbob42: but you need the CLX units from D7 to allow it to work on D2005...
JonR: CrossKylix is very cool...
drbob42: yes, it is very very cool indeed!!
JulianK: Only 48 users? I expected 4800.. :(
drbob42: perhaps you are late? missed the best part? <g>
JoeH: thats great news !
drbob42: That抯 Delphi 2006, right, not the year 2006... ??
jthurman: I finally escaped from prior obligations, with 5 minutes left in the chat...
Wizardiii: With my buffer delay your answers are here before I hear you talk about them ;-)
JonR: Past chats have been archived...
serge_d: thank you, will do
serge_d: To JohnK: Sorry ;( WindowsXP complaince? Docking, Help system, look and feel, theams, ... we have things done but not completed...
Wizardiii: MaxOdenda... it is on the partner CD.
MaxOdenda: Together for Delphi ? Wizardiii: CrossKylix
MaxOdenda: I know, I was thinking about a real integration including form designer
JulianK: From all that I hear, I抦 really worried as Delphi developer. :(
MrBtrieve: why?
emisosa: you should be happy!
Wizardiii: Why?
drbob42: are you listening to the same channel?? ;-)
JulianK: Cause since "D6" the Delphi seems like one endless experiment..
emisosa: to you? ;)
jthurman: I think Borland is (rightfully) leary of Mono after the lackluster Kylix results.
jthurman: Or is that leery?
drbob42: it抯 called innovation - progress...
drbob42: BTW, the full Feature Matrix is online now!
jthurman: bob: Cool.
Tjipke: thanks guys (danny especially)
delyria: reset
jthurman: Thanks Danny! (and hi, incidentally)
Tjipke: Danny no get back to work soon!
drbob42: with a few typos in the key...
webcab: Thanks, now do I schedule a chat with Chris Benson
drbob42: thanks Danny
bmcgee: Thanks guys.
DonS: thx guys...
MaxOdenda: Thanks Borland for these Chat events
_zzorro: Thanks guys.
serge_d: there is updated version of component list as well
drbob42: BUT THE CHART/KEY IS A BIT WRONG - SEE NON.TECHNICAL
livechat: Thank you. Thank you very much!
emisosa: no, thank you... we should do this chats more often
AndiS: bye
drbob42: Bye everyone
serge_d: bye everyone

分享到:
评论

相关推荐

    DebuggingWithGDB 6.8-2008

    Table of Contents Summary of gdb . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1 Free Software . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ....

    The effects of the kinesthetic-tactile component of the VAKT procedure on secondary LD students' reading performance

    The effects of the kinesthetic-tactile component of the VAKT procedure on secondary LD students' reading performance Psychology in rhe Schools 1981, 18, 334-340 THE EFFECTS OF THE KINESTHETIC-...

    真题答案和解析.pdf

    - "In 1912, when Jim Thorpe was 24 years old, he became part of the U.S. Olympic team." 这句话运用了时间状语从句,突出了Jim Thorpe加入美国奥运团队的时间节点。 - "People thought it was impossible for...

    聊天聊天

    Miauu-聊天 描述 Miauu BackOffice的ReactJs Chat应用程序。...git clone https://github.com/thorpe-innovation/chat-miauu-web.git 输入资料夹 cd chat-miauu-web 安装依赖项 yarn install 运行项目 yarn start

    css-to-js:CSS,JS对象和JSX道具之间的转换

    CSS到JS 这些天,我们都在做CSS-in-JS,但是似乎没有关于最佳方法的真正共识。 有些人喜欢编写普通的旧CSS,模板...:laptop: 内森·索普(Nathan Thorpe) :laptop: 该项目遵循所有参与者的规范。 欢迎任何形式的捐助!

    BlueJ-PartA:CO452独立研究BlueJ Part A Isabelle Thorpe

    CO452应用模板2021 该模板基于《 Java的对象优先:使用BlueJ版本6的实用介绍》一书中描述的Java应用程序,并且包含BNU CO452学生的入门项目,而Wiki包含有关评分方案和评估应用程序所需功能的详细信息。...

    The principal game: A group consequence procedure to increase classroom in-task behavior

    The effect of principal attention contingent upon team on-task performance was examined in an unruly fourth-grade class. In the first condition, principal attention was delivered through a game-like...

    VAKT 程序的动觉-触觉组件对中学 LD 学生阅读表现的影响

    The effects of the kinesthetic-tactile component of the VAKT procedure on secondary LD students' reading performance Psychology in rhe Schools 1981, 18, 334-340 THE EFFECTS OF THE KINESTHETIC-...

    甘肃省临夏中学2020届高三英语上学期期中试题202001160243

    1. 主题公园开放时间:四个提到的主题公园——Alton Towers、Thorpe Park、Drayton Manor和Chessington World of Adventures Resort——都有特定的开放季节,通常从3月持续到11月。具体开放时间各异,一般上午9:30至...

    2019开放大学人文英语形考1-4.doc

    此外,文档还包含了一段关于Jim Thorpe的阅读理解,他是一个具有杰出体育成就的美国原住民。 【具体知识点】 1. 日常对话:在题目1中,展示了购物场景下的对话,"Can I help you?" 是商店员工常见的开场白,而"I ...

    robo martin

    Thorpe于1986年在卡内基梅隆大学(Carnegie Mellon University)发表的博士论文中探讨了视觉和导航技术在机器人漫游车中的应用。这表明早期的机器人研究就已关注于如何使机器人能够理解和适应复杂的环境,特别是在...

    主要游戏:增加课堂任务行为的群体后果程序

    The effect of principal attention contingent upon team on-task performance was examined in an unruly fourth-grade class. In the first condition, principal attention was delivered through a game-like...

    2022年开放大学人文英语形考1-4及答案宣贯.pdf

    阅读理解部分:Jim Thorpe was a Native American. He was born in 1888 in an Indian Territory that is now Oklahoma. ... 知识点:英语阅读理解。该部分考查学生对英语阅读理解的掌握,如了解文章的主要内容、...

    OASES声学软件使用指南

    - **体积吸收标识**:如果选择'**T**',则表示采用Thorpe体积衰减模型。 - **上界面起伏标识**:如果选择'*',则需要从额外的文件(*ati文件)中读取起伏数据。 5. **Surface line**:根据上界面情况的不同,可能...

    化工传递过程基础知识.pptx

    1898年,F.H.Thorpe的作品《Outline of Chemistry》为代表作之一。 2. **单元操作认识阶段**:此阶段认识到某些设备和过程系统是相似的,可以将这些相似的系统归纳为若干个单元操作来研究生产过程。1923年,Walker和...

    2021高考英语一轮复习课时作业7Unit7TheSea北师大版必修3

    【知识点】:这篇内容涉及到的是关于英国的四个主题公园,分别是Drayton Manor Theme Park、Thorpe Park、Warwick Castle和Chessington World of Adventures。这些公园各有特色,适合不同年龄段的游客。 1. Drayton...

    matlab灰色预测检验代码-OPT3MAL:OPT3MAL

    Thorpe、Ilya Mandel、Sarah E. Greene、Junhua Huang 和 Shucheng Xie 地球化学和宇宙化学学报 (2021) 与模型内置的最近邻距离的筛选是称为“OPT3MAL” - O- ptimised P H和从经由MA折角大号收入3-羟基脂肪酸Ť...

    甘肃省武山县 高二英语上学期第一次月考试题.doc

    1. 主题公园开放时间:文中提到了三个主题公园——Alton Towers、Thorpe Park和Drayton Manor的开放时间。Alton Towers从3月21日至11月8日每天开放,最早入场时间为9:30,游乐设施在10:00开始运营,通常下午5点到6点...

    bellhop 水声工具箱

    **bellhop水声工具箱详解** “bellhop水声工具箱”是一款专为水声学研究和工程应用设计的专业软件工具。它集成了强大的计算功能,用于模拟和分析水下声波传播,广泛应用于海洋科学、海洋工程、水下通信等领域。...

    postgresql-kit:用于将PostgreSQL数据库与Mac和iOS项目集成的框架

    这套框架和测试应用程序提供了一套框架,...版权所有2009-2015 David Thorpe 根据Apache许可版本2.0(“许可”)许可; 除非遵守许可,否则不得使用此文件。 您可以在获得许可证的副本 除非适用法律要求或以书面形

Global site tag (gtag.js) - Google Analytics